mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00: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:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user