Support custom charset and collation for schema_migrations table (mysql) #390
mheffner
started this conversation in
Feature Ideas
Replies: 1 comment 2 replies
-
Some history on this:
Potential solutions:
Thoughts? I'm leaning towards the first option. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For MySQL the default
schema_migrations
table is created using a latin1 charset and latin1_bin collation:This is incompatible with some database providers, like Planetscale. Planetscale requires a utf8 charset/collation.
It looks like this is hardcoded here. It would be great if this were configurable.
Beta Was this translation helpful? Give feedback.
All reactions