|
|
|
@ -3,7 +3,7 @@ create table players ( |
|
|
|
id integer primary key autoincrement, |
|
|
|
firstname text not null, |
|
|
|
name text not null, |
|
|
|
ban_end float not null |
|
|
|
ban_end double not null |
|
|
|
); |
|
|
|
|
|
|
|
drop table if exists machines; |
|
|
|
@ -19,5 +19,5 @@ create table bans ( |
|
|
|
player_id integer not null, |
|
|
|
target_id integer not null, |
|
|
|
success integer not null, |
|
|
|
time float not null |
|
|
|
time double not null |
|
|
|
); |
|
|
|
|