mirror of
https://git.swurl.xyz/swirl/link.git
synced 2025-01-15 23:46:34 +00:00
8 lines
277 B
Go
8 lines
277 B
Go
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")
|
|
)
|