summaryrefslogtreecommitdiffstats
path: root/models/migrations
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-03-23 10:19:19 -0400
committerUnknwon <u@gogs.io>2015-03-23 10:19:19 -0400
commit2bb982dada0012d59ead783aaf90e730351171cc (patch)
tree329bd89296092d68680cf99223900d46e338eff7 /models/migrations
parentade343f6dc2fda5d988ddb00c3a8460dd64bc42a (diff)
downloadgitea-2bb982dada0012d59ead783aaf90e730351171cc.tar.gz
gitea-2bb982dada0012d59ead783aaf90e730351171cc.zip
#1080: Remove footer ads/branding from default template
Diffstat (limited to 'models/migrations')
-rw-r--r--models/migrations/migrations.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go
index 4b5f5a6975..94cab453f6 100644
--- a/models/migrations/migrations.go
+++ b/models/migrations/migrations.go
@@ -50,10 +50,10 @@ type Version struct {
// If you want to "retire" a migration, remove it from the top of the list and
// update _MIN_VER_DB accordingly
var migrations = []Migration{
- NewMigration("generate collaboration from access", accessToCollaboration), // V0 -> V1
- NewMigration("make authorize 4 if team is owners", ownerTeamUpdate), // V1 -> V2
- NewMigration("refactor access table to use id's", accessRefactor), // V2 -> V3
- NewMigration("generate team-repo from team", teamToTeamRepo), // V3 -> V4
+ NewMigration("generate collaboration from access", accessToCollaboration), // V0 -> V1:v0.5.13
+ NewMigration("make authorize 4 if team is owners", ownerTeamUpdate), // V1 -> V2:v0.5.13
+ NewMigration("refactor access table to use id's", accessRefactor), // V2 -> V3:v0.5.13
+ NewMigration("generate team-repo from team", teamToTeamRepo), // V3 -> V4:v0.5.13
}
// Migrate database to current version