* Fixed sql updates, renamed and cleaned up

--HG--
branch : trunk
This commit is contained in:
Drahy
2009-03-04 09:19:13 +01:00
parent 7a44a9fb93
commit 19ce0bb39f
6 changed files with 10 additions and 8 deletions

View File

@@ -3,4 +3,4 @@ INSERT INTO `spell_proc_event` VALUES (55672, 0x00, 6, 0x00000001, 0x00000000, 0
-- Bloodsurge
DELETE FROM `spell_proc_event` WHERE `entry` IN (46915);
INSERT INTO `spell_proc_event` VALUES (46915, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
INSERT INTO `spell_proc_event` VALUES (46915, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);

View File

@@ -1,2 +1,2 @@
DELETE FROM trinity_string where entry=1010;
INSERT INTO trinity_string (entry, content_default) VALUES(1010, "| Account | Character | IP | GM | EXP |");
DELETE FROM `trinity_string` WHERE `entry`=1010;
INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES(1010, "| Account | Character | IP | GM | EXP |");

View File

@@ -1,2 +1,2 @@
--Death Strike
INSERT INTO `spell_proc_event` VALUES (45469, 0x00, 15, 0x00000010, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000, 0);
INSERT INTO `spell_proc_event` VALUES (45469, 0x00, 15, 0x00000010, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000, 0);

View File

@@ -0,0 +1,4 @@
/*ALTER TABLE db_version CHANGE COLUMN required_7369_01_mangos_quest_template required_7376_01_mangos_spell_area bit;*/
ALTER TABLE spell_area
CHANGE COLUMN `aura_spell` `aura_spell` mediumint(8) NOT NULL default '0';

View File

@@ -1,4 +0,0 @@
ALTER TABLE db_version CHANGE COLUMN required_7369_01_mangos_quest_template required_7376_01_mangos_spell_area bit;
ALTER TABLE spell_area
CHANGE COLUMN `aura_spell` `aura_spell` mediumint(8) NOT NULL default '0';

View File

@@ -57,4 +57,6 @@ INSTALL(FILES
1646_mangos_7369_01_world_quest_template.sql
1654_world.sql
1657_world.sql
1661_world.sql
1663_mangos_7376_01_world_spell_area.sql
DESTINATION share/trinity/sql/updates)