aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-10-30 08:15:01 +0100
committerShauren <shauren.trinity@gmail.com>2015-10-30 08:15:01 +0100
commit4245c2c59dd7923b3c607ed16bb6b0976e16e12d (patch)
treec89dae4c81146c521db714b4850aea967d00cabe /sql
parentb72e723acef97781c82c50094532ae8296391329 (diff)
SQL: syntax fix in characters_database.sql
Diffstat (limited to 'sql')
-rw-r--r--sql/base/characters_database.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql
index d8f3c792c2e..2ebb8c25d01 100644
--- a/sql/base/characters_database.sql
+++ b/sql/base/characters_database.sql
@@ -1155,7 +1155,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 */;
@@ -2304,7 +2304,7 @@ CREATE TABLE `pet_spell_cooldown` (
`spell` mediumint(8) 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 */;