You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
Hey there,
I'm using this alongside Laravel Dusk with SQLite for testing purposes, problem is when I try and run the db migrations I get this error:
Doctrine\DBAL\DBALException: Unknown database type binary requested, Doctrine\DBAL\Platforms\SqlitePlatform may not support it.
I've not really used Dusk or SQLite before and after some digging SQLite doesn't have the "binary" datatype but instead uses "blob".
I checked the SQLiteGrammar file and it specifies
binary(16)
for thetypeUuid
- changing this toblob(256)
fixes the issue.Just wondering if it's something I'm doing wrong or should the Grammar file specify the
blob
data type?thanks
The text was updated successfully, but these errors were encountered: