a cache for slack profile pictures and emojis
at main 257 B view raw
1import type { Database } from "bun:sqlite"; 2 3/** 4 * Migration interface 5 */ 6export interface Migration { 7 version: string; 8 description: string; 9 up: (db: Database) => Promise<void>; 10 down?: (db: Database) => Promise<void>; // Optional downgrade function 11}