forked from forgejo/forgejo
Migration v244.go should be v243.go (#22988)
This commit is contained in:
parent
54d7435d28
commit
2b02343e21
1 changed files with 0 additions and 0 deletions
16
models/migrations/v1_19/v243.go
Normal file
16
models/migrations/v1_19/v243.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package v1_19 //nolint
|
||||
|
||||
import (
|
||||
"xorm.io/xorm"
|
||||
)
|
||||
|
||||
func AddExclusiveLabel(x *xorm.Engine) error {
|
||||
type Label struct {
|
||||
Exclusive bool
|
||||
}
|
||||
|
||||
return x.Sync(new(Label))
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue