15 lines
317 B
Go
15 lines
317 B
Go
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package v1_10
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
func AddRepoAdminChangeTeamAccessColumnForUser(x *xorm.Engine) error {
|
||
|
type User struct {
|
||
|
RepoAdminChangeTeamAccess bool `xorm:"NOT NULL DEFAULT false"`
|
||
|
}
|
||
|
|
||
|
return x.Sync(new(User))
|
||
|
}
|