· 8 years ago · Mar 10, 2018, 04:04 AM
1drop table if exists games;
2create table games (
3 id int not null auto_increment,
4 game_type varchar(50),
5 map varchar(50),
6
7 p1_kills int not null,
8 p2_kills int not null,
9 p3_kills int not null,
10 p4_kills int not null,
11
12 p1_deaths int not null,
13 p2_deaths int not null,
14 p3_deaths int not null,
15 p4_deaths int not null,
16
17 created_on date null,
18
19 primary key (id)
20);