diff options
author | QAston <none@none> | 2010-01-31 17:49:55 +0100 |
---|---|---|
committer | QAston <none@none> | 2010-01-31 17:49:55 +0100 |
commit | 9de5acc4e103058356c7dc410789dde34e7bcc8e (patch) | |
tree | c127b51314406c7bc4ae23569d4adeb17903d202 | |
parent | ac388e6f214ff02c504c5ea8af7c1c468bf07406 (diff) |
*Drop no longer needed sql table.
--HG--
branch : trunk
-rw-r--r-- | sql/updates/7268_world_spell_proc_item_enchant.sql | 1 | ||||
-rw-r--r-- | sql/world.sql | 24 |
2 files changed, 1 insertions, 24 deletions
diff --git a/sql/updates/7268_world_spell_proc_item_enchant.sql b/sql/updates/7268_world_spell_proc_item_enchant.sql new file mode 100644 index 00000000000..0856d3fe51f --- /dev/null +++ b/sql/updates/7268_world_spell_proc_item_enchant.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS `spell_proc_item_enchant`; diff --git a/sql/world.sql b/sql/world.sql index bb6b794af29..27bc5244405 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -6635,30 +6635,6 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam UNLOCK TABLES; -- --- Table structure for table `spell_proc_item_enchant` --- - -DROP TABLE IF EXISTS `spell_proc_item_enchant`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `spell_proc_item_enchant` ( - `entry` mediumint(8) unsigned NOT NULL, - `ppmRate` float NOT NULL DEFAULT '0', - PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `spell_proc_item_enchant` --- - -LOCK TABLES `spell_proc_item_enchant` WRITE; -/*!40000 ALTER TABLE `spell_proc_item_enchant` DISABLE KEYS */; -INSERT INTO `spell_proc_item_enchant` VALUES (8034,9),(8680,8.5714),(13218,21.4286); -/*!40000 ALTER TABLE `spell_proc_item_enchant` ENABLE KEYS */; -UNLOCK TABLES; - --- -- Table structure for table `spell_required` -- |