set encryptCompanyId in BossInfo nullable

This commit is contained in:
geekgeekrun
2024-11-23 13:30:17 +08:00
parent 803a3148b2
commit 3f93420717
3 changed files with 41 additions and 2 deletions
+3 -1
View File
@@ -25,6 +25,7 @@ import * as cliHighlight from 'cli-highlight';
import { saveChatStartupRecord, saveJobInfoFromRecommendPage, saveMarkAsNotSuitRecord } from "./handlers";
import { UpdateChatStartupLogTable1729182577167 } from "./migrations/1729182577167-UpdateChatStartupLogTable";
import minimist from 'minimist'
import { UpdateBossInfoTable1732032381304 } from "./migrations/1732032381304-UpdateBossInfoTable";
Boolean(cliHighlight);
@@ -57,7 +58,8 @@ export function initDb(dbFilePath) {
ChatMessageRecord,
],
migrations: [
UpdateChatStartupLogTable1729182577167
UpdateChatStartupLogTable1729182577167,
UpdateBossInfoTable1732032381304
],
migrationsRun: true
});