mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-11-02 07:21:02 +00:00
[SEMVER] store SemVer in ForgejoSemVer after a database upgrade
(cherry picked from commitb7fe7cf401) (cherry picked from commitcf339eed4f) (cherry picked from commit4f3a16168b) (cherry picked from commit6f5bbc53fc) (cherry picked from commitaca42b422e) (cherry picked from commit5a7f7580e5) (cherry picked from commit06c383c807) (cherry picked from commitfe831dcb53) (cherry picked from commitcd12cd0dbc) (cherry picked from commitcc79163703) (cherry picked from commit0102a5715e) (cherry picked from commit403f7520b3) (cherry picked from commita3b61510a2) (cherry picked from commitf83f0f9feb) (cherry picked from commitfd1c3a6d09) (cherry picked from commitf7cdc3d6f1) (cherry picked from commit060121b644) (cherry picked from commit62c847ff02) (cherry picked from commit4d051b51c2) (cherry picked from commit86e6981a93) (cherry picked from commitc1fc9e441b) (cherry picked from commit8bb2f0871a) (cherry picked from commit0cd9fe5251) (cherry picked from commitb0b44778b4) (cherry picked from commit7c2f4f749f)
This commit is contained in:
parent
76c7df9630
commit
081a155cc1
9 changed files with 158 additions and 2 deletions
|
|
@ -8,6 +8,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"code.gitea.io/gitea/models/forgejo/semver"
|
||||
forgejo_v1_20 "code.gitea.io/gitea/models/forgejo_migrations/v1_20"
|
||||
"code.gitea.io/gitea/modules/git"
|
||||
"code.gitea.io/gitea/modules/log"
|
||||
|
|
@ -141,5 +142,10 @@ func Migrate(x *xorm.Engine) error {
|
|||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
|
||||
if err := x.Sync(new(semver.ForgejoSemVer)); err != nil {
|
||||
return fmt.Errorf("sync: %w", err)
|
||||
}
|
||||
|
||||
return semver.SetVersionStringWithEngine(x, setting.ForgejoVersion)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue