631bafc991
(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
) (cherry picked from commit8ea0e22ff6
) (cherry picked from commit43ac19ac59
) (cherry picked from commit0f51ac12b6
) (cherry picked from commit35d0875c5e
) (cherry picked from commitc30006f457
) (cherry picked from commit8696631f5b
) (cherry picked from commite19c79e2da
)
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))
|
|
}
|