Mineplex/Mineplex.Database/047-servergroupstats.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
350 B
SQL

create or replace table servergroupstats
(
id int auto_increment
primary key,
serverGroup varchar(100) null,
updated mediumtext null,
players int null,
maxPlayers int null,
totalNetworkCpuUsage double(4,2) null,
totalNetworkRamUsage double(4,2) null,
totalCpu mediumint null,
totalRam mediumint null,
US tinyint(1) default 1 not null
);