mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-24 10:46:10 +01:00
2605e121d4
(cherry picked from commit 86b26436af
)
Conflicts:
models/forgejo_migrations/migrate.go
trivial context conflict
16 lines
234 B
Go
16 lines
234 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package forgejo_v1_20 //nolint:revive
|
|
|
|
import (
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func CreateSemVerTable(x *xorm.Engine) error {
|
|
type ForgejoSemVer struct {
|
|
Version string
|
|
}
|
|
|
|
return x.Sync(new(ForgejoSemVer))
|
|
}
|