mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 13:39:15 +00:00

- Reformatted import statements for better organization. - Cleaned up whitespace and indentation in searchExtensionData function. - Enhanced readability of SQL conditions and query building logic. - Disabled eslint for explicit any usage in the troubleshooters page.
drizzle
- Only use
pull
to generate the schema from existing database. - Don't
migrate
orpush
.
export DB_FILE_NAME="~/Library/Application Support/sh.kunkun.desktop/kk.dev.sqlite"
bunx drizzle-kit pull
We are using sqlite with fts5, which drizzle doesn't support yet, so pushing the schema will destroy the existing schema.
We only use pulled schema to generate sql queries.
Update Schema
After drizzle-kit pull
the schema may have problem with JSON type and boolean type.
Will need to manually update the following
JSON
+ data: text({ mode: "json" }).notNull(),
+ metadata: text({ mode: "json" }),
- data: numeric().notNull(),
- metadata: numeric(),
Boolean
+ enabled: integer({ mode: "boolean" }),
- enabled: numeric().default(sql`(TRUE)`),