all repos — stealth-developers @ 750b579d9db8101d4b6ffdd2f814de11d899963e

apps/migration/src/old-db/index.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
import { Database } from "bun:sqlite";
import { drizzle } from "drizzle-orm/bun-sqlite";

const sqlite = new Database("./data/old.sqlite");
export const db = drizzle({ client: sqlite });

export * from "./schema";