This commit is contained in:
2025-02-27 10:40:29 +05:00
parent 3d3e5b2cdb
commit f2de9827ff
67 changed files with 1749 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
dialect: 'postgresql',
schema: './src/db/schema/index.ts',
out: './drizzle',
dbCredentials: {
url: process.env.POSTGRES_URI!,
},
});