revert: 删除迁移脚本

This commit is contained in:
tbphp
2025-07-25 14:10:20 +08:00
parent 43ae7c9cd9
commit a1f5547866
2 changed files with 1 additions and 55 deletions

View File

@@ -6,12 +6,5 @@ import (
func MigrateDatabase(db *gorm.DB) error {
// v1.0.13 修复请求日志数据
if err := V1_0_13_FixRequestLogs(db); err != nil {
return err
}
// v1.0.16 增加 key_value 字段长度
if err := V1_0_16_IncreaseKeyValueLength(db); err != nil {
return err
}
return nil
return V1_0_13_FixRequestLogs(db)
}