mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
*Update characters.sql - by Xlybriem
--HG-- branch : trunk
This commit is contained in:
@@ -764,6 +764,32 @@ LOCK TABLES `game_event_save` WRITE;
|
||||
/*!40000 ALTER TABLE `game_event_save` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `gm_tickets`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `gm_tickets`;
|
||||
CREATE TABLE `gm_tickets` (
|
||||
`guid` int(10) NOT NULL auto_increment,
|
||||
`playerGuid` int(11) unsigned NOT NULL default '0',
|
||||
`name` varchar(15) NOT NULL,
|
||||
`message` text NOT NULL,
|
||||
`timestamp` int(10) NOT NULL default '0',
|
||||
`closed` tinyint(1) NOT NULL default '0',
|
||||
`assignedto` int(10) NOT NULL default '0',
|
||||
`comment` text NOT NULL,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
||||
|
||||
--
|
||||
-- Dumping data for table `gm_tickets`
|
||||
--
|
||||
|
||||
LOCK TABLES `gm_tickets` WRITE;
|
||||
/*!40000 ALTER TABLE `gm_tickets` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `gm_tickets` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `group_instance`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user