feat: add drizzle-kit config and generate initial migration

This commit is contained in:
Jannis Braun
2026-04-09 00:26:53 +02:00
parent be2c16efa4
commit 450d96407f
4 changed files with 3615 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
schema: './src/db/schema.ts',
out: './drizzle',
dialect: 'sqlite',
});