1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-06 07:13:17 +00:00
forgejo/models/migrations/v1_10/v97.go

16 lines
399 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package v1_10 //nolint
2019-10-17 09:26:49 +00:00
import "xorm.io/xorm"
func AddRepoAdminChangeTeamAccessColumnForUser(x *xorm.Engine) error {
type User struct {
RepoAdminChangeTeamAccess bool `xorm:"NOT NULL DEFAULT false"`
}
return x.Sync2(new(User))
}