mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-17 19:46:18 +00:00
f77e1bb7ab
(cherry picked from commit86b26436af
) (cherry picked from commit479cba59ac
) (cherry picked from commit4765f9a889
) (cherry picked from commitaf771410bf
) (cherry picked from commitd1ea9305d8
)
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))
|
|
}
|