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
always, as you noted, things go under the radar (need some different mail setup for github i think). We also would welcome new additional maintainers to this module (just mentioning if you might be interested to help).
According to MySQL documentation,
COLLATE
must appear afterCHARACTER SET
https://dev.mysql.com/doc/refman/8.0/en/charset-table.htmlCurrently this module has it the other way around. This means when attempting to specify a collation and character set like so:
The following SQL is generated:
This results in the correct
utf8mb4
character set, but with a collation set to the default schemautf8mb4_general_ci
notutf8mb4_unicode_ci
Correct SQL generated:
@wzrdtales would you be open to a PR to resolve this? Looks like
spec.collate
andspec.charset
need swapping in_applyTableOptions
The text was updated successfully, but these errors were encountered: