18fd949916
Refs: https://forgejo.org/2023-08-release-v1-20-3-0/ (cherry picked from commita266dd0ce3
) (cherry picked from commitb9eb5eccd8
) (cherry picked from commit7fc2028ede
) (cherry picked from commit0c988e6120
) (cherry picked from commit7ba05e8c2b
) (cherry picked from commit2ed5068abe
) (cherry picked from commit353913a26d
) (cherry picked from commit4e63a01a8b
) (cherry picked from commit99f612aed3
) (cherry picked from commitb4fe189cae
) (cherry picked from commit520295a6f5
) (cherry picked from commite5a564044b
) (cherry picked from commit52cc6c26fc
) (cherry picked from commitd58f04bd1d
) (cherry picked from commit1b7213a98b
)
26 lines
580 B
Go
26 lines
580 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 (
|
|
ForgejoV6DatabaseVersion = int64(261) // must be updated once v6 / Gitea v1.21 is out
|
|
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 v1TOv5_0_1Included(e, dbVersion, cfg)
|
|
}
|