When I want to change MySQL-Charset from utf8 (utf8_general_ci) to utf8mb4 (utf8_unicode_ci) with PHPMyAdmin, it is sufficient when I do these things?
- Change database collation to "utf8_unicode_ci"
- Change tables collation to "utf8_unicodel_ci"
- Change every text column to "utf8_unicodel_ci"
- Change set_charset in my PHP code to "utf8mb4"
Is this correct or is something missing what to to? Where can occur any problems?