Files
sqlite3/gormlite/errors.go

8 lines
279 B
Go
Raw Normal View History

2023-06-06 12:37:54 +01:00
package gormlite
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")
)