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
I'm missing the ability to specify the default character set for tables and the character set for columns. I can't find anything to that in the docs nor in the code.
I need to create something like
CREATETABLE `something` (
`key`varchar(16) CHARACTER SET ascii COLLATE ascii_bin,
`title`varchar(255) NOT NULL DEFAULT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci
The text was updated successfully, but these errors were encountered:
Feature Request
Summary
I'm missing the ability to specify the default character set for tables and the character set for columns. I can't find anything to that in the docs nor in the code.
I need to create something like
The text was updated successfully, but these errors were encountered: