[7249] Remove outdated data from spell_proc_event.

Signed-off-by: DiSlord <dislord@nomail.com>
This commit is contained in:
jorooo 2009-02-08 04:53:20 +03:00 committed by VladimirMangos
parent c5f20ff9a9
commit e355084376
4 changed files with 7 additions and 3 deletions

View file

@ -22,7 +22,7 @@
DROP TABLE IF EXISTS `db_version`;
CREATE TABLE `db_version` (
`version` varchar(120) default NULL,
`required_7242_01_mangos_spell_bonus_data` bit(1) default NULL
`required_7249_01_mangos_spell_proc_event` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@ -17169,7 +17169,6 @@ INSERT INTO `spell_proc_event` VALUES
(60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
(60170, 0x00000000, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
(60172, 0x00000000, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
(60200, 0x00000000, 15, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
(60493, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
(60503, 0x00000000, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
(60537, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),

View file

@ -0,0 +1,3 @@
ALTER TABLE db_version CHANGE COLUMN required_7242_01_mangos_spell_bonus_data required_7249_01_mangos_spell_proc_event bit;
DELETE FROM `spell_proc_event` WHERE `entry`='60200';

View file

@ -169,6 +169,7 @@ pkgdata_DATA = \
7230_02_mangos_spell_bonus_data.sql \
7235_01_mangos_command.sql \
7242_01_mangos_spell_bonus_data.sql \
7249_01_mangos_spell_proc_event.sql \
README
## Additional files to include when running 'make dist'
@ -318,4 +319,5 @@ EXTRA_DIST = \
7230_02_mangos_spell_bonus_data.sql \
7235_01_mangos_command.sql \
7242_01_mangos_spell_bonus_data.sql \
7249_01_mangos_spell_proc_event.sql \
README

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7248"
#define REVISION_NR "7249"
#endif // __REVISION_NR_H__