create or replace table elorating ( id int(10) auto_increment, uuid varchar(256) not null, gamemode tinyint unsigned not null, matchesPlayed int unsigned not null, elo int not null, gameType varchar(40) not null, primary key (id, uuid, gamemode) ) charset=latin1;