mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 04:11:18 +01:00
8ea0e22ff6
(cherry picked from commit86b26436af
) (cherry picked from commit479cba59ac
) (cherry picked from commit4765f9a889
) (cherry picked from commitaf771410bf
) (cherry picked from commitd1ea9305d8
) (cherry picked from commitf77e1bb7ab
) (cherry picked from commit0b95f8fe89
) (cherry picked from commit4f8fb2390a
)
15 lines
234 B
Go
15 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))
|
|
}
|