models/forgejo_migrations: Gitea tables migration ID
Sync() will act on the given struct and the ID field should be exactly as it is in the Gitea migration when a Gitea table is modified.
This commit is contained in:
parent
d5a3f14063
commit
d6eab2b586
|
@ -9,7 +9,7 @@ import (
|
||||||
|
|
||||||
func AddWikiBranchToRepository(x *xorm.Engine) error {
|
func AddWikiBranchToRepository(x *xorm.Engine) error {
|
||||||
type Repository struct {
|
type Repository struct {
|
||||||
ID int64
|
ID int64 `xorm:"pk autoincr"`
|
||||||
WikiBranch string
|
WikiBranch string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ import (
|
||||||
|
|
||||||
func AddUserRepoUnitHintsSetting(x *xorm.Engine) error {
|
func AddUserRepoUnitHintsSetting(x *xorm.Engine) error {
|
||||||
type User struct {
|
type User struct {
|
||||||
ID int64
|
ID int64 `xorm:"pk autoincr"`
|
||||||
EnableRepoUnitHints bool `xorm:"NOT NULL DEFAULT true"`
|
EnableRepoUnitHints bool `xorm:"NOT NULL DEFAULT true"`
|
||||||
}
|
}
|
||||||
|
|
||||||
return x.Sync(&User{})
|
return x.Sync(&User{})
|
||||||
|
|
Loading…
Reference in New Issue