Mineplex/Mineplex.Database/022-fieldmonster.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
275 B
SQL

create or replace table fieldmonster
(
id int auto_increment
primary key,
server varchar(100) null,
name varchar(100) null,
type varchar(100) null,
mobMax int null,
mobRate double null,
center varchar(100) null,
radius int null,
height int null
)
charset=latin1;