Skip to content

Commit

Permalink
Migration to fix existing owner team units (#1873)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethantkoenig authored and appleboy committed Jun 5, 2017
1 parent ae922af commit ca9169f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions models/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ var migrations = []Migration{
NewMigration("add units for team", addUnitsToRepoTeam),
// v33 -> v34
NewMigration("remove columns from action", removeActionColumns),
// v34 -> v35
NewMigration("give all units to owner teams", giveAllUnitsToOwnerTeams),
}

// Migrate database to current version
Expand Down
25 changes: 25 additions & 0 deletions models/migrations/v34.go
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit ca9169f

Please sign in to comment.