Fix migration issue. (#22867)
See: https://github.com/go-gitea/gitea/pull/22112#issuecomment-1426872992
This commit is contained in:
parent
9057a008a1
commit
d4a9b35c4b
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import (
|
|||
// AddCardTypeToProjectTable: add CardType column, setting existing rows to CardTypeTextOnly
|
||||
func AddCardTypeToProjectTable(x *xorm.Engine) error {
|
||||
type Project struct {
|
||||
CardType int `xorm:"NOT NULL"`
|
||||
CardType int `xorm:"NOT NULL DEFAULT 0"`
|
||||
}
|
||||
|
||||
return x.Sync(new(Project))
|
||||
|
|
Loading…
Reference in a new issue