fix: sync schemaVersion to 2 matching production

This commit is contained in:
Sakurasan
2026-08-31 18:16:19 +08:00
parent 1f5f60e905
commit 6d951a0d61
+1 -1
View File
@@ -16,7 +16,7 @@ import (
// 触发一次 AutoMigrate 并把新版本写入库(SQLite 用 PRAGMA user_version)。
// AutoMigrate 对已有表的列判定不收敛(每次都重建表:CREATE __temp + INSERT SELECT + DROP),
// 大表上一次重建数十秒且每次重启重演,所以之后版本未变就直接跳过。
const schemaVersion = 1
const schemaVersion = 2
// Open 打开数据库连接并自动迁移。
// 开发默认 SQLite(dsn 支持 file:...?_journal_mode=WAL),生产可切 postgres。