The usual way to change collation on a mysql table is:
ALTER TABLE <table_name> CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
What I want to do is change the tables default collation WITHOUT changing the existing colums collation. How can I accomplish that?