Mineplex/Mineplex.Database/047-servergroupstats.sql

16 lines
350 B
MySQL
Raw Permalink Normal View History

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
);