fix: Remove old Drizzle files

This commit is contained in:
April Hall 2025-02-05 18:37:39 -05:00
parent ae6bf23e7f
commit 19ea9ea721
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B
2 changed files with 0 additions and 16 deletions

View File

@ -1,2 +0,0 @@
# Replace with your DB credentials!
DATABASE_URL="postgres://user:password@localhost:5432/svchat"

View File

@ -1,14 +0,0 @@
import { defineConfig } from 'drizzle-kit';
if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set');
export default defineConfig({
schema: './src/lib/server/db/schema.ts',
dbCredentials: {
url: process.env.DATABASE_URL,
},
verbose: true,
strict: true,
dialect: 'postgresql',
});