I have a table encoded in latin1
and collate latin1_bin
.
In my table there is a column comments
of type 'TEXT', as you know this column inherits table's encoding and collation, but from now on I should change it to be utf8
and utf8_general_ci
because I'm starting to store special characters in comments
.
Would it cause any downside effect if I'd use a command like the following?
alter table notebooks modify comments text CHARACTER SET utf8 COLLATE utf8_general_ci;
Thank you for your answer.