mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
20 lines
758 B
SQL
20 lines
758 B
SQL
DROP TABLE IF EXISTS `character_stable`;
|
|
CREATE TABLE `character_stable` (
|
|
`owner` int(11) unsigned NOT NULL default '0',
|
|
`slot` int(11) unsigned NOT NULL default '0',
|
|
`petnumber` int(11) unsigned NOT NULL default '0',
|
|
`entry` int(11) unsigned NOT NULL default '0',
|
|
`level` int(11) unsigned NOT NULL default '0',
|
|
`loyalty` int(11) unsigned NOT NULL default '1',
|
|
`trainpoint` int(11) unsigned NOT NULL default '0',
|
|
KEY `petnumber` (`petnumber`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
|
|
|
--
|
|
-- Dumping data for table `character_stable`
|
|
--
|
|
|
|
/*!40000 ALTER TABLE `character_stable` DISABLE KEYS */;
|
|
LOCK TABLES `character_stable` WRITE;
|
|
UNLOCK TABLES;
|
|
/*!40000 ALTER TABLE character_stable ENABLE KEYS */;
|