Refactored tools\sql\server to tools\sql\game.

This commit is contained in:
mobius
2015-01-15 16:21:59 +00:00
parent 36a8603438
commit 9ca7e86adc
113 changed files with 2 additions and 2 deletions

14
trunk/dist/tools/sql/game/pets.sql vendored Normal file
View File

@@ -0,0 +1,14 @@
CREATE TABLE IF NOT EXISTS `pets` (
`item_obj_id` int(10) unsigned NOT NULL,
`name` varchar(16),
`level` smallint(2) unsigned NOT NULL,
`curHp` int(9) unsigned DEFAULT '0',
`curMp` int(9) unsigned DEFAULT '0',
`exp` bigint(20) unsigned DEFAULT '0',
`sp` bigint(10) unsigned DEFAULT '0',
`fed` int(10) unsigned DEFAULT '0',
`ownerId` int(10) NOT NULL DEFAULT '0',
`restore` enum('true','false') NOT NULL DEFAULT 'false',
PRIMARY KEY (`item_obj_id`),
KEY `ownerId` (`ownerId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;