We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ae7c9 commit a1f5547Copy full SHA for a1f5547
internal/db/migrations/migration.go
@@ -6,12 +6,5 @@ import (
6
7
func MigrateDatabase(db *gorm.DB) error {
8
// v1.0.13 修复请求日志数据
9
- if err := V1_0_13_FixRequestLogs(db); err != nil {
10
- return err
11
- }
12
- // v1.0.16 增加 key_value 字段长度
13
- if err := V1_0_16_IncreaseKeyValueLength(db); err != nil {
14
15
16
- return nil
+ return V1_0_13_FixRequestLogs(db)
17
}
internal/db/migrations/v1.0.16_increase_key_value_length.go
0 commit comments