You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

v152.go 273B

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