diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-09-10 20:04:24 +0200 | 
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-09-10 20:04:24 +0200 | 
| commit | 59eff3fef91cec1b95e552122fde6e95ba1ab0fb (patch) | |
| tree | 4adb17a33e12ca904ec551d522bb51ea6dc3146a /sql/base/characters_database.sql | |
| parent | 1efb3f08e278530f59d681f676b031a7fc6db3ac (diff) | |
SQL: Typo fixes
Diffstat (limited to 'sql/base/characters_database.sql')
| -rw-r--r-- | sql/base/characters_database.sql | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 43bfd1baa65..1693a9a5397 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -1398,7 +1398,7 @@ CREATE TABLE `character_spell_cooldown` (    `item` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item Identifier',    `time` int(10) unsigned NOT NULL DEFAULT '0',    `categoryId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell category Id', -  `categoryEnd` int(10) unsigned NOT NULL DEFAULT '0'; +  `categoryEnd` int(10) unsigned NOT NULL DEFAULT '0',    PRIMARY KEY (`guid`,`spell`)  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;  /*!40101 SET character_set_client = @saved_cs_client */; @@ -2852,7 +2852,7 @@ CREATE TABLE `pet_spell_cooldown` (    `spell` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',    `time` int(10) unsigned NOT NULL DEFAULT '0',    `categoryId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell category Id', -  `categoryEnd` int(10) unsigned NOT NULL DEFAULT '0'; +  `categoryEnd` int(10) unsigned NOT NULL DEFAULT '0',    PRIMARY KEY (`guid`,`spell`)  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;  /*!40101 SET character_set_client = @saved_cs_client */;  | 
