1
0
Fork 0
forked from forgejo/forgejo

Fix extra columns from label table (#8633)

* Fix extra fields from database

* Add migration to drop unneeded columns

* Fix lint

* Make sure the columns exist
This commit is contained in:
guillep2k 2019-10-23 08:48:32 -03:00 committed by Lauris BH
parent 3fe9646564
commit 2f10bfa0f6
3 changed files with 40 additions and 4 deletions

View file

@ -262,6 +262,8 @@ var migrations = []Migration{
NewMigration("update migration repositories' service type", dropColumnHeadUserNameOnPullRequest),
// v103 -> v104
NewMigration("Add WhitelistDeployKeys to protected branch", addWhitelistDeployKeysToBranches),
// v104 -> v105
NewMigration("remove unnecessary columns from label", removeLabelUneededCols),
}
// Migrate database to current version