fix: attempt to fix failing sqlite migrations (resolve #210)

This commit is contained in:
Ferdinand Mütsch 2021-06-13 11:43:24 +02:00
parent 25464e9519
commit 82b8951437
3 changed files with 3 additions and 2 deletions

View File

@ -115,6 +115,7 @@ func main() {
db, err = gorm.Open(config.Db.GetDialector(), &gorm.Config{Logger: gormLogger})
if config.Db.Dialect == "sqlite3" {
db.Raw("PRAGMA foreign_keys = ON;")
db.DisableForeignKeyConstraintWhenMigrating = true
}
if config.IsDev() {

View File

@ -3,7 +3,7 @@ package models
type ProjectLabel struct {
ID uint `json:"id" gorm:"primary_key"`
User *User `json:"-" gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE"`
UserID string `json:"-" gorm:"not null; index:idx_language_mapping_user; index:idx_project_label_user"`
UserID string `json:"-" gorm:"not null; index:idx_project_label_user"`
ProjectKey string `json:"project"`
Label string `json:"label" gorm:"type:varchar(64)"`
}

View File

@ -1 +1 @@
1.28.0
1.28.1