Good morning, people.
I have a problem with changing the collate of a column in my database. An example of how I'm running:
ALTER TABLE 'minhaTabela' CHANGE COLUMN 'nome' 'nome' VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8_general_ci' AFTER 'id';
Whenever I run, it does not change and leaves the field null. It only allows me to leave it with utf8_unicode format. This is getting me a little nervous and I can not find a solution. The table is MyISAM, it's not like InnoDB .. I do not know if this is related.
Any ideas how to help me?