mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-02 21:50:10 +00:00
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { type Config } from "drizzle-kit";
|
|
|
|
export default {
|
|
schema: "./server/db/schema.ts",
|
|
dialect: "sqlite",
|
|
driver: "d1",
|
|
dbCredentials: {
|
|
wranglerConfigPath: "./wrangler.toml",
|
|
dbName: "",
|
|
},
|
|
out: "migrations",
|
|
} satisfies Config;
|