https://kotlinlang.org logo
#exposed
Title
# exposed
m

mkporwit

03/29/2018, 10:53 PM
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

tapac

03/30/2018, 11:00 AM
varchar
and
text
columns both support collation as param. Try to set it to`utf8mb4_general_ci`
m

mkporwit

03/30/2018, 5:25 PM
Thanks, that did the trick
3 Views