Mineplex/Mineplex.Database/009-accountpunishments.sql
Daniel Waggner fc179e824b Database go brrrrrrr
No idea why, but the database deleted all of the information...  These files are also logged in the Discord Changelog channel and are uploaded to mediafire... Nevertheless, here they are anyhow (plus a bunch of empty tables that I'm too lazy to take out of this commit)
2021-05-28 22:22:21 -07:00

16 lines
362 B
SQL

create or replace table accountpunishments
(
id int auto_increment
primary key,
target varchar(16) not null,
category varchar(100) not null,
sentence varchar(100) not null,
reason varchar(100) not null,
duration double not null,
admin varchar(16) not null,
severity int not null,
time timestamp default current_timestamp() not null
)
charset=latin1;