Is there a way to specify the encoding for certai...
# exposed
m
Is there a way to specify the encoding for certain columns? Specifically, I’m looking to tell MySQL that some columns are utf8mb4. In case it matters, we’re using the DAO approach.
t
varchar
and
text
columns both support collation as param. Try to set it to`utf8mb4_general_ci`
m
Thanks, that did the trick