Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
-- ---------------------------
-- Table structure for `itemsonground`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `itemsonground` (
`object_id` int(11) NOT NULL default '0',
`item_id` int(11) default NULL,
`count` int(11) default NULL,
`enchant_level` int(11) default NULL,
`x` int(11) default NULL,
`y` int(11) default NULL,
`z` int(11) default NULL,
`drop_time` decimal(20,0) default NULL,
`equipable` int(1) default '0',
PRIMARY KEY (`object_id`)
);