github.com/wfusion/gofusion@v1.1.14/common/infra/drivers/orm/sqlite/errors.go (about) 1 package sqlite 2 3 import "errors" 4 5 var ( 6 ErrConstraintsNotImplemented = errors.New("constraints not implemented on sqlite, consider using DisableForeignKeyConstraintWhenMigrating, more details https://github.com/go-gorm/gorm/wiki/GORM-V2-Release-Note-Draft#all-new-migrator") 7 )