mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[6940] Update spell_learn_spell.
This commit is contained in:
parent
1e5dad839f
commit
45ac0c5036
4 changed files with 7 additions and 3 deletions
|
|
@ -22,7 +22,7 @@
|
||||||
DROP TABLE IF EXISTS `db_version`;
|
DROP TABLE IF EXISTS `db_version`;
|
||||||
CREATE TABLE `db_version` (
|
CREATE TABLE `db_version` (
|
||||||
`version` varchar(120) default NULL,
|
`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';
|
) 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;
|
LOCK TABLES `spell_learn_spell` WRITE;
|
||||||
/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
|
||||||
INSERT INTO `spell_learn_spell` VALUES
|
INSERT INTO `spell_learn_spell` VALUES
|
||||||
(2842,8681),
|
|
||||||
(5784,33388),
|
(5784,33388),
|
||||||
(13819,33388),
|
(13819,33388),
|
||||||
(17002,24867),
|
(17002,24867),
|
||||||
|
|
|
||||||
3
sql/updates/6940_01_mangos_spell_learn_spell.sql
Normal file
3
sql/updates/6940_01_mangos_spell_learn_spell.sql
Normal 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;
|
||||||
|
|
@ -97,6 +97,7 @@ pkgdata_DATA = \
|
||||||
2008_12_22_19_characters_item_instance.sql \
|
2008_12_22_19_characters_item_instance.sql \
|
||||||
6936_01_mangos_spell_chain.sql \
|
6936_01_mangos_spell_chain.sql \
|
||||||
6939_01_mangos_quest_template.sql \
|
6939_01_mangos_quest_template.sql \
|
||||||
|
6940_01_mangos_spell_learn_spell.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -174,4 +175,5 @@ EXTRA_DIST = \
|
||||||
2008_12_22_19_characters_item_instance.sql \
|
2008_12_22_19_characters_item_instance.sql \
|
||||||
6936_01_mangos_spell_chain.sql \
|
6936_01_mangos_spell_chain.sql \
|
||||||
6939_01_mangos_quest_template.sql \
|
6939_01_mangos_quest_template.sql \
|
||||||
|
6940_01_mangos_spell_learn_spell.sql \
|
||||||
README
|
README
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "6939"
|
#define REVISION_NR "6940"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue