moved schema to a single file

This commit is contained in:
2024-12-16 17:54:50 -05:00
parent 96fc6a1b16
commit 0bf9011cc6
28 changed files with 3059 additions and 184 deletions

View File

@@ -1,8 +1,8 @@
import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './src/drizzle',
schema: './src/db/schema/',
out: './src/drizzle/schema/',
schema: './src/drizzle/schema/',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL!,