You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
543 B

drop table if exists players;
create table players (
id integer primary key autoincrement,
firstname text not null,
name text not null,
ban_end float not null
);
drop table if exists machines;
create table machines (
id integer primary key autoincrement,
player_id integer not null,
ip text not null
);
drop table if exists bans;
create table bans (
id integer primary key autoincrement,
player_id integer not null,
target_id integer not null,
success integer not null,
time float not null
);