I've just installed MySQL 8.0.11
, transfered my app's database into it and changed the laravel database settings to use the new one. Now everytime I try to login I get the following error:
ERROR 1231 (42000):
Variable 'sql_mode' can't be set to the value of 'NO_AUTO_CREATE_USER'
I tried to set NO_AUTO_CREATE_USER
manually:
set global sql_mode="..., NO_AUTO_CREATE_USER, ...";
But I get the same error. How could I solve the problem and run laravel 5.5
with MySQL 8.0.11
?