From 0ad8bd98c5ab32182f0148d2bc451e76b16b9523 Mon Sep 17 00:00:00 2001 From: Blaymoira Date: Sat, 21 Feb 2009 14:54:13 +0100 Subject: *Update characters.sql - by Xlybriem --HG-- branch : trunk --- sql/characters.sql | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'sql') diff --git a/sql/characters.sql b/sql/characters.sql index 751aaedf6e1..99cfd9afe44 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -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` -- -- cgit v1.2.3