link/vendor/gorm.io/driver/sqlite/errors.go

8 lines
277 B
Go
Raw Normal View History

2021-04-30 02:28:21 +00:00
package sqlite
import "errors"
var (
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")
)