Skip to content

Commit

Permalink
[c12981] Mark more columns that got replaced with condition system as…
Browse files Browse the repository at this point in the history
… obsolete

(based on commit [12788] - c6b77f1)

Signed-off-by: Xfurry <xfurry@scriptdev2.com>
  • Loading branch information
Schmoozerd authored and xfurry committed Nov 23, 2014
1 parent b2d1451 commit 76e4062
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
9 changes: 9 additions & 0 deletions contrib/DB_Tools/WorldDB/141115_SpellArea.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- Fields in spell_area table that should be removed

-- -- The columns quest_start, quest_start_active, quest_end, racemask, gender
-- -- of table spell_are will be removed

-- -- Output limited to 10 lines.

-- Related commit: ef5e75 - [12440] Add support for condition_id to spell_area table
SELECT * FROM spell_area WHERE quest_start !=0 OR quest_start_active !=0 OR quest_end !=0 OR racemask !=0 OR gender !=0 LIMIT 10;
9 changes: 9 additions & 0 deletions contrib/DB_Tools/WorldDB/141115_SpellclickSpells.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- Fields in npc_spellclick_spells table that should be removed

-- -- The columns quest_start, quest_start_active, quest_end
-- -- of table npc_spellclick_spells will be removed

-- -- Output limited to 10 lines.

-- Related commit: e91ad7 - [12441] Add condition_id support to npc_spellclick_spells
SELECT * FROM npc_spellclick_spells WHERE quest_start !=0 OR quest_start_active !=0 OR quest_end !=0 LIMIT 10;
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12980"
#define REVISION_NR "12981"
#endif // __REVISION_NR_H__

0 comments on commit 76e4062

Please sign in to comment.