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
Evolutions fail without error when using special characters like ö. It just keeps asking to run the evolution. I have included a reproduction script below.
Now I've tried to change the character set of the play_evolutions table to utf8 but as that doesn't make any difference at all I'm assuming this is due to something in the code somewhere. Furthermore the special character needs to be removed entirely from the script. Commenting out is not enough.
Play version: 2.6.11
Play-slick version: 3.0.2
Mysql-connector-java version: 5.1.44
Reproduction evolution script:
# --- !UpsCREATETABLEwhatever (
textVARCHAR(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO whatever (text) VALUES ('ö'); # Remove to succeedINSERT INTO whatever (text) VALUES ('o');
# --- !DownsDROPTABLE IF EXISTS whatever;
The text was updated successfully, but these errors were encountered:
Evolutions fail without error when using special characters like ö. It just keeps asking to run the evolution. I have included a reproduction script below.
Now I've tried to change the character set of the play_evolutions table to utf8 but as that doesn't make any difference at all I'm assuming this is due to something in the code somewhere. Furthermore the special character needs to be removed entirely from the script. Commenting out is not enough.
Play version: 2.6.11
Play-slick version: 3.0.2
Mysql-connector-java version: 5.1.44
Reproduction evolution script:
The text was updated successfully, but these errors were encountered: