I have realised after making about 20 tables that I need to user utf8_unicode as opposed to utf8_general. What is the fastest way to change it using PHPMyAdmin?
I had one idea:
Export the database as SQL then using notepad run a find and replace on it and then reimport it… but it sounds like a bit of a headache.
Is there a better way?
You can alter the tables in-place rather than export/import everything:
for each column whose collation needs changing.
Whether PHPMyAdmin makes that feasible, I don’t know.