fix: upgrade cbc message

This commit is contained in:
zhangsz
2025-08-01 16:52:31 +08:00
parent de0b81ee01
commit e0fa00bc05
4 changed files with 32 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS `cbc_message` (
`message_json` TEXT,
`status` TEXT DEFAULT 'INACTIVE' CHECK(`status` IN ('ACTIVE', 'INACTIVE')),
`detail` TEXT,
`created_at` INTEGER DEFAULT (strftime('%s', 'now') * 1000000),
`created_at` INTEGER,
`updated_at` INTEGER
);