Reviewed-on: boring.tools/boring.tools#1 Co-authored-by: Lars Hampe <hello@hashdot.co> Co-committed-by: Lars Hampe <hello@hashdot.co>
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import { defineConfig } from 'drizzle-kit'
|
|
export default defineConfig({
|
|
schema: './src/schema/index.ts',
|
|
out: './src/migrations',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: process.env.POSTGRES_URL as string,
|
|
},
|
|
verbose: false,
|
|
strict: false,
|
|
})
|