feat: create new character table and migrate data from existing character table
All checks were successful
Build Docker Image / build (push) Successful in 1m17s

This commit is contained in:
2026-03-05 22:00:41 +01:00
parent a7775783af
commit b4601a5caf
4 changed files with 1210 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ export const character = sqliteTable('character', {
status: text('status').$type<Status | null>(),
arcId: text('arcId').references(() => arc.id),
url: text('url'),
isInDailyMode: integer('isInDailyMode', { mode: 'boolean' }).default(true)
isInDailyMode: integer('isInDailyMode', { mode: 'boolean' }).default(false)
});
// Define the character override table schema