mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-22 08:40:08 +08:00
- Added `get-tsconfig` dependency version 4.10.1 to yarn.lock. - Updated schema path in sqlite-drizzle.config.ts from './src/main/db/schema/*' to './src/main/db/schemas/*'. - Removed unused files: columnHelpers.ts, preference.ts, seed/index.ts, and seed/preferenceSeed.ts to clean up the codebase.
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { defineConfig } from 'drizzle-kit'
|
|
export default defineConfig({
|
|
out: './migrations/sqlite-drizzle',
|
|
schema: './src/main/db/schemas/*',
|
|
dialect: 'sqlite',
|
|
casing: 'snake_case'
|
|
})
|