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
Although advertised as MySql compatible, there are several gotchas and missing features from the typical Eloquent + MySql experience. These should be outlined in the docs somewhere.
An obvious one is that the default Laravel migrations do not run with this driver, there are modifications necessary, some pretty substantial like user emails uniqueness. But this goes for failed_jobs and others. See: https://usefathom.com/blog/multiple-uniques-singlestore
The other one is the lack of support for certain prepared statement operations. If you try to run php artisan migrate:fresh, for example, you will get an error.
I am sure there will be others once I get a chance to dive in more.
The text was updated successfully, but these errors were encountered:
Although advertised as MySql compatible, there are several gotchas and missing features from the typical Eloquent + MySql experience. These should be outlined in the docs somewhere.
An obvious one is that the default Laravel migrations do not run with this driver, there are modifications necessary, some pretty substantial like user emails uniqueness. But this goes for failed_jobs and others. See: https://usefathom.com/blog/multiple-uniques-singlestore
The other one is the lack of support for certain prepared statement operations. If you try to run
php artisan migrate:fresh
, for example, you will get an error.I am sure there will be others once I get a chance to dive in more.
The text was updated successfully, but these errors were encountered: