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
/base/auth.sql
line 27 last_login timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
This is an invalid default type for column type "timestamp". The correct default value for MySQL 5.5 for column type "timestamp" should be "CURRENT_TIMESTAMP" and for MySQL 5.6+ "CURRENT_TIMESTAMP" is the default value for both "timestamp" and "datetime"
The text was updated successfully, but these errors were encountered:
/base/auth.sql
line 27
last_login
timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',This is an invalid default type for column type "timestamp". The correct default value for MySQL 5.5 for column type "timestamp" should be "CURRENT_TIMESTAMP" and for MySQL 5.6+ "CURRENT_TIMESTAMP" is the default value for both "timestamp" and "datetime"
The text was updated successfully, but these errors were encountered: