create table check2(f1 varchar(20),f2 varchar(20));
creates a table with the default collation latin1_general_ci;
latin1_general_ci
alte
may need to change the SCHEMA not only table
ALTER SCHEMA `` DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci (as Rich said - utf8mb4);
(mariaDB 10)