Files

18 lines
336 B
Go
Raw Permalink Normal View History

2019-11-11 09:15:29 -06:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-11-11 09:15:29 -06:00
2025-06-27 07:59:55 +02:00
package v1_11
2019-11-11 09:15:29 -06:00
import (
"xorm.io/xorm"
)
2022-11-02 16:54:36 +08:00
func AddTemplateToRepo(x *xorm.Engine) error {
2019-11-11 09:15:29 -06:00
type Repository struct {
IsTemplate bool `xorm:"INDEX NOT NULL DEFAULT false"`
TemplateID int64 `xorm:"INDEX"`
}
2023-08-13 21:17:21 +02:00
return x.Sync(new(Repository))
2019-11-11 09:15:29 -06:00
}