diff --git a/data/sql/base/db_characters/battleground_deserters.sql b/data/sql/base/db_characters/battleground_deserters.sql index a7d1893e1..5a9e58427 100644 --- a/data/sql/base/db_characters/battleground_deserters.sql +++ b/data/sql/base/db_characters/battleground_deserters.sql @@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `battleground_deserters`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `battleground_deserters` ( - `guid` INT(10) UNSIGNED NOT NULL COMMENT 'characters.guid', - `type` TINYINT(3) UNSIGNED NOT NULL COMMENT 'type of the desertion', - `datetime` DATETIME NOT NULL COMMENT 'datetime of the desertion' + `guid` int(10) unsigned NOT NULL COMMENT 'characters.guid', + `type` tinyint(3) unsigned NOT NULL COMMENT 'type of the desertion', + `datetime` datetime NOT NULL COMMENT 'datetime of the desertion' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; diff --git a/data/sql/base/db_characters/gm_ticket.sql b/data/sql/base/db_characters/gm_ticket.sql index 95646ca11..9db70e951 100644 --- a/data/sql/base/db_characters/gm_ticket.sql +++ b/data/sql/base/db_characters/gm_ticket.sql @@ -30,7 +30,7 @@ CREATE TABLE `gm_ticket` `needMoreHelp` tinyint(3) unsigned NOT NULL DEFAULT '0', `resolvedBy` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of GM who resolved the ticket', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=10572 DEFAULT CHARSET=utf8 COMMENT='Player System'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */; LOCK TABLES `gm_ticket` WRITE;