From ca9169fbe9be5aab47a5feabb4df8cbbe1fb4d9d Mon Sep 17 00:00:00 2001 From: Ethan Koenig Date: Mon, 5 Jun 2017 06:40:25 -0400 Subject: Migration to fix existing owner team units (#1873) --- models/migrations/v34.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 models/migrations/v34.go (limited to 'models/migrations/v34.go') diff --git a/models/migrations/v34.go b/models/migrations/v34.go new file mode 100644 index 0000000000..258da41c04 --- /dev/null +++ b/models/migrations/v34.go @@ -0,0 +1,25 @@ +// Copyright 2017 Gitea. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package migrations + +import ( + "github.com/go-xorm/xorm" +) + +// Team see models/team.go +type Team struct { + UnitTypes []int `xorm:"json"` +} + +const ownerAccessMode = 4 + +var allUnitTypes = []int{1, 2, 3, 4, 5, 6, 7, 8, 9} + +func giveAllUnitsToOwnerTeams(x *xorm.Engine) error { + _, err := x.Cols("unit_types"). + Where("authorize = ?", ownerAccessMode). + Update(&Team{UnitTypes: allUnitTypes}) + return err +} -- cgit v1.2.3