mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
|
|
import type { Config } from 'drizzle-kit';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
out: './src/lib/server/api/databases/postgres/migrations',
|
||
|
|
schema: './src/lib/server/api/databases/postgres/tables/*.table.ts',
|
||
|
|
breakpoints: false,
|
||
|
|
strict: true,
|
||
|
|
dialect: 'postgresql',
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL!
|
||
|
|
},
|
||
|
|
migrations: {
|
||
|
|
table: 'migrations',
|
||
|
|
schema: 'public'
|
||
|
|
}
|
||
|
|
} satisfies Config;
|