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