Mineplex/Mineplex.Database/020-elorating.sql

13 lines
272 B
MySQL
Raw Permalink Normal View History

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;