import { defineConfig } from 'drizzle-kit' export default defineConfig({ schema: './src/schema.ts', // Migration SQL files live here and are applied by the custom runner in // src/client.ts (runMigrations); drizzle-kit generate adds new files to it. out: './migrations', dialect: 'sqlite', dbCredentials: { url: 'data/app.db' }, })