1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-09 04:45:48 +00:00
gitea/models/migrations/v1_10/v97.go

15 lines
326 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
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.Sync(new(User))
}