diff options
| author | leak <leakzx@googlemail.com> | 2011-04-28 22:34:40 +0200 |
|---|---|---|
| committer | leak <leakzx@googlemail.com> | 2011-04-28 22:34:40 +0200 |
| commit | 03365e9a573667f5485f44642b47b05473094474 (patch) | |
| tree | 7b20b4a98c8bf5e680411708d266ece0ef7890ca /sql/base/world_database.sql | |
| parent | 5aeb4fe794174c1269b4efcb43556a8b69d2b26a (diff) | |
Core/ObjectMgr: Refactor sEquipmentStorage
Diffstat (limited to 'sql/base/world_database.sql')
| -rw-r--r-- | sql/base/world_database.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 835642bf041..0ca95fb2ab4 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -1416,9 +1416,9 @@ DROP TABLE IF EXISTS `creature_equip_template`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `creature_equip_template` ( `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Unique entry', - `equipentry1` mediumint(8) unsigned NOT NULL DEFAULT '0', - `equipentry2` mediumint(8) unsigned NOT NULL DEFAULT '0', - `equipentry3` mediumint(8) unsigned NOT NULL DEFAULT '0', + `itemEntry1` mediumint(8) unsigned NOT NULL DEFAULT '0', + `itemEntry2` mediumint(8) unsigned NOT NULL DEFAULT '0', + `itemEntry3` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`entry`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)'; /*!40101 SET character_set_client = @saved_cs_client */; |
