mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 05:09:31 +01:00
f6ba73de4c
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 commitbd35e3b7bc
) (cherry picked from commitf59d9f7088
) (cherry picked from commit0b2a93e044
) (cherry picked from commit8c5d8bfea0
) (cherry picked from commit2817ce027c
) (cherry picked from commit162056cbcf
) (cherry picked from commit07152a0ba6
) (cherry picked from commit72e3777915
) (cherry picked from commit3b1ebd95b9
) (cherry picked from commit14fc4f3fac
) (cherry picked from commit9052c86e8c
) (cherry picked from commit16f1cc21ea
) (cherry picked from commit0fef12f5d8
) (cherry picked from commitd187381f73
) (cherry picked from commit9dda715111
)
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)
|
|
}
|