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
Laravel Database Migrations failing since dbal upgrade from 2.9.2 to 2.10.0:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHARACTER SET utf8mb4 NOT NULL COLLATE utf8mb4_unicode_ci' at line 1 (SQL: ALTER TABLE user_federations CHANGE id id BIGINT UNSIGNED AUTO_INCREMENT CHARACTER S
ET utf8mb4 NOT NULL COLLATE utf8mb4_unicode_ci)
Current behaviour
When you have a string field and change it to a bigInteger field strange character set errors are occurring.
How to reproduce
Create a Laravel db migration with an string column and make another migration with a change to that column where you change it to bigInteger.
The text was updated successfully, but these errors were encountered:
Bug Report
Laravel Database Migrations failing since dbal upgrade from 2.9.2 to 2.10.0:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHARACTER SET utf8mb4 NOT NULL COLLATE
utf8mb4_unicode_ci
' at line 1 (SQL: ALTER TABLE user_federations CHANGE id id BIGINT UNSIGNED AUTO_INCREMENT CHARACTER SET utf8mb4 NOT NULL COLLATE
utf8mb4_unicode_ci
)Current behaviour
When you have a string field and change it to a bigInteger field strange character set errors are occurring.
How to reproduce
Create a Laravel db migration with an string column and make another migration with a change to that column where you change it to bigInteger.
The text was updated successfully, but these errors were encountered: