all repos — stealth-developers @ 42558204ec0d0eb73b4b38be82996b8e7948d2ce

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/meow.sqlite");
export const db = drizzle({ client: sqlite });

export * from "./schema";