mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 01:21:50 +08:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
dialect: 'postgresql',
|
|
schema: './src/schema/schema.ts',
|
|
out: './drizzle',
|
|
strict: true,
|
|
verbose: true,
|
|
});
|