Mineplex/Mineplex.Database/016-activetournaments.sql

12 lines
222 B
MySQL
Raw Normal View History

create or replace table activetournaments
(
name varchar(100) not null
primary key,
start_date date not null,
end_date date not null,
is_gamemode int not null,
server_id tinyint unsigned not null
)
charset=latin1;