160ae5ee23
(cherry picked from commit69741e4e66
) (cherry picked from commit2a3c7b09cb
) (cherry picked from commita1554c1168
) (cherry picked from commitedae2c6d2d
) (cherry picked from commit49737cf009
) (cherry picked from commitec53704c34
) (cherry picked from commit7a1c5c0f32
) (cherry picked from commite658c20c0f
) (cherry picked from commitbaf575468f
) (cherry picked from commit40cb14eff4
) (cherry picked from commit25ab4d0713
) (cherry picked from commit5a29005215
) (cherry picked from commitfef1260e99
) (cherry picked from commiteadbbb1afe
) (cherry picked from commitdb22d61eb4
) (cherry picked from commit9d3b0be39a
) (cherry picked from commitb3fa3c1292
) (cherry picked from commitc8300d4fe2
) (cherry picked from commit8ba6a4c9db
) (cherry picked from commit8b8df652c1
) (cherry picked from commitfc8fa050c6
) (cherry picked from commitbcf3faf698
) (cherry picked from commit514a631aa6
) (cherry picked from commit529c7a09f7
) (cherry picked from commit0d093d76e2
)
25 lines
458 B
Go
25 lines
458 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package forgejo
|
|
|
|
import (
|
|
"code.gitea.io/gitea/models/db"
|
|
"code.gitea.io/gitea/modules/log"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
var (
|
|
ForgejoV5DatabaseVersion = int64(260)
|
|
ForgejoV4DatabaseVersion = int64(244)
|
|
)
|
|
|
|
var logFatal = log.Fatal
|
|
|
|
func fatal(err error) error {
|
|
logFatal("%v", err)
|
|
return err
|
|
}
|
|
|
|
func PreMigrationSanityChecks(e db.Engine, dbVersion int64, cfg setting.ConfigProvider) error {
|
|
return nil
|
|
}
|