瀏覽代碼

Migration to fix existing owner team units (#1873)

tags/v1.2.0-rc1
Ethan Koenig 7 年之前
父節點
當前提交
ca9169fbe9
共有 2 個文件被更改,包括 27 次插入0 次删除
  1. 2
    0
      models/migrations/migrations.go
  2. 25
    0
      models/migrations/v34.go

+ 2
- 0
models/migrations/migrations.go 查看文件

@@ -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

+ 25
- 0
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
}

Loading…
取消
儲存