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
I tried to execute this command mysql -p --user=root 'express-admin-examples' < fixtures/mysql/insert.sql while I was following the steps from here.
Then MySQL returned the following error. ERROR 1364 (HY000) at line 195: Field 'binary' doesn't have a default value
To fix this I had to edit the query at the INSERTS into the table controls_inline. I added the column binary and a default value that was a hex string.
It would be fine to fix this to the database creation works for MySQL.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi guys,
I tried to execute this command
mysql -p --user=root 'express-admin-examples' < fixtures/mysql/insert.sql
while I was following the steps from here.Then MySQL returned the following error.
ERROR 1364 (HY000) at line 195: Field 'binary' doesn't have a default value
To fix this I had to edit the query at the INSERTS into the table
controls_inline
. I added the columnbinary
and a default value that was a hex string.It would be fine to fix this to the database creation works for MySQL.
Thanks.
The text was updated successfully, but these errors were encountered: