[6940] Update spell_learn_spell.

This commit is contained in:
VladimirMangos 2008-12-24 16:09:50 +03:00
parent 1e5dad839f
commit 45ac0c5036
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_6939_01_mangos_quest_template` bit(1) default NULL
`required_6940_01_mangos_spell_learn_spell` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@ -15846,7 +15846,6 @@ CREATE TABLE `spell_learn_spell` (
LOCK TABLES `spell_learn_spell` WRITE;
/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
INSERT INTO `spell_learn_spell` VALUES
(2842,8681),
(5784,33388),
(13819,33388),
(17002,24867),

View file

@ -0,0 +1,3 @@
ALTER TABLE db_version CHANGE COLUMN required_6939_01_mangos_quest_template required_6940_01_mangos_spell_learn_spell bit;
DELETE FROM spell_learn_spell WHERE entry = 2842;

View file

@ -97,6 +97,7 @@ pkgdata_DATA = \
2008_12_22_19_characters_item_instance.sql \
6936_01_mangos_spell_chain.sql \
6939_01_mangos_quest_template.sql \
6940_01_mangos_spell_learn_spell.sql \
README
## Additional files to include when running 'make dist'
@ -174,4 +175,5 @@ EXTRA_DIST = \
2008_12_22_19_characters_item_instance.sql \
6936_01_mangos_spell_chain.sql \
6939_01_mangos_quest_template.sql \
6940_01_mangos_spell_learn_spell.sql \
README

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "6939"
#define REVISION_NR "6940"
#endif // __REVISION_NR_H__