mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-22 13:18:29 -04:00
Remove migration support from versions earlier than 1.6.0 (#10026)
* Remove migration support from versions earlier than 1.6.0 * Remove unused functions * Update gogs upgrade instructions * Improve "latest" link as per @jolheiser Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
b3d8e2d4f7
commit
d816f7018b
63 changed files with 53 additions and 3443 deletions
|
@ -26,6 +26,18 @@ func addIssueDependencies(x *xorm.Engine) (err error) {
|
|||
UpdatedUnix int64 `xorm:"updated"`
|
||||
}
|
||||
|
||||
const (
|
||||
v16UnitTypeCode = iota + 1 // 1 code
|
||||
v16UnitTypeIssues // 2 issues
|
||||
v16UnitTypePRs // 3 PRs
|
||||
v16UnitTypeCommits // 4 Commits
|
||||
v16UnitTypeReleases // 5 Releases
|
||||
v16UnitTypeWiki // 6 Wiki
|
||||
v16UnitTypeSettings // 7 Settings
|
||||
v16UnitTypeExternalWiki // 8 ExternalWiki
|
||||
v16UnitTypeExternalTracker // 9 ExternalTracker
|
||||
)
|
||||
|
||||
if err = x.Sync(new(IssueDependency)); err != nil {
|
||||
return fmt.Errorf("Error creating issue_dependency_table column definition: %v", err)
|
||||
}
|
||||
|
@ -80,7 +92,7 @@ func addIssueDependencies(x *xorm.Engine) (err error) {
|
|||
|
||||
//Updating existing issue units
|
||||
units := make([]*RepoUnit, 0, 100)
|
||||
err = x.Where("`type` = ?", V16UnitTypeIssues).Find(&units)
|
||||
err = x.Where("`type` = ?", v16UnitTypeIssues).Find(&units)
|
||||
if err != nil {
|
||||
return fmt.Errorf("Query repo units: %v", err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue