blob: 502c82a40de5906b414e0bc50e76dcea95b0b49b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_13 //nolint
import "xorm.io/xorm"
func AddTrustModelToRepository(x *xorm.Engine) error {
type Repository struct {
TrustModel int
}
return x.Sync(new(Repository))
}
|