[6941] Data for spell_learn_spell for new class specific enchanting ability.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
GriffonHeart 2008-12-25 02:28:07 +03:00 committed by VladimirMangos
parent 45ac0c5036
commit 2c1c58a44c
4 changed files with 13 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_6940_01_mangos_spell_learn_spell` bit(1) default NULL
`required_6941_01_mangos_spell_learn_spell` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@ -15856,7 +15856,9 @@ INSERT INTO `spell_learn_spell` VALUES
(33873,47180),
(33943,34090),
(34767,33391),
(34769,33388);
(34769,33388),
(53428,53341),
(53428,53343);
/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
UNLOCK TABLES;

View file

@ -0,0 +1,6 @@
ALTER TABLE db_version CHANGE COLUMN required_6940_01_mangos_spell_learn_spell required_6941_01_mangos_spell_learn_spell bit;
DELETE FROM spell_learn_spell WHERE entry = 53428;
INSERT INTO spell_learn_spell VALUES
(53428,53341),
(53428,53343);

View file

@ -98,6 +98,7 @@ pkgdata_DATA = \
6936_01_mangos_spell_chain.sql \
6939_01_mangos_quest_template.sql \
6940_01_mangos_spell_learn_spell.sql \
6941_01_mangos_spell_learn_spell.sql \
README
## Additional files to include when running 'make dist'
@ -176,4 +177,5 @@ EXTRA_DIST = \
6936_01_mangos_spell_chain.sql \
6939_01_mangos_quest_template.sql \
6940_01_mangos_spell_learn_spell.sql \
6941_01_mangos_spell_learn_spell.sql \
README

View file

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