mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-13 10:09:21 +09:00
14 lines
277 B
Go
14 lines
277 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_13
|
|
|
|
import "gitea.dev/models/db"
|
|
|
|
func AddTrustModelToRepository(x db.EngineMigration) error {
|
|
type Repository struct {
|
|
TrustModel int
|
|
}
|
|
return x.Sync(new(Repository))
|
|
}
|