Mineplex/Mineplex.Database/010-accounts.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

20 lines
528 B
SQL

create or replace table accounts
(
id int auto_increment,
uuid varchar(100) not null,
name varchar(40) not null,
gems int default 2500 null,
lastLogin timestamp default current_timestamp() not null,
totalPlayTime tinytext null,
gold int default 1000 not null,
coins int default 5000 null,
donorRank varchar(20) null,
`rank` varchar(20) default 'ALL' null,
rankPerm tinyint null,
rankExpire timestamp default current_timestamp() not null on update current_timestamp(),
constraint id
unique (id)
)
charset=latin1;