-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Broken migration, STORED NULL is not valid on mariadb 10.4+ #51
Comments
I am experiencing this issue too. I just tried a fresh install on:
|
Hi, thanks for reporting! I raised a PR for this. |
Any chance the fix could be released soon? |
Stripe 1.3.0 is out with a fix for that. Thanks again! |
The latest migration src/migrations/m240819_121818_loosen_aux_data_uniq.php does not successfully complete on mariadb 10.4+ (10.4.34 to be specific). This also affects the new Install.php script.
This is beacuse mariadb does not support the STORED NULL syntax.
Valid syntax for mysql:
Valid syntax for mariadb:
Note that STORED does not require NULL, as NULL is implied when not specified on generated columns.
The text was updated successfully, but these errors were encountered: