fix: cbc时间字段统一毫秒处理

This commit is contained in:
TsMask
2025-08-01 16:29:28 +08:00
parent e4f52c949e
commit de0b81ee01
8 changed files with 35 additions and 59 deletions

View File

@@ -12,7 +12,7 @@ CREATE TABLE `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
);