mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[8890] Fix sql update name.
This commit is contained in:
parent
fe70af7b5d
commit
ea20791310
6 changed files with 11 additions and 7 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
|||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`cache_id` int(10) default '0',
|
||||
`required_8886_01_mangos_string` bit(1) default NULL
|
||||
`required_8889_01_mangos_spell_pet_auras` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
|
|||
6
sql/updates/8889_01_mangos_spell_pet_auras.sql
Normal file
6
sql/updates/8889_01_mangos_spell_pet_auras.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_8886_01_mangos_string required_8889_01_mangos_spell_pet_auras bit;
|
||||
|
||||
DELETE FROM spell_pet_auras WHERE aura = 57989;
|
||||
|
||||
INSERT INTO `spell_pet_auras` VALUES
|
||||
(58228, 0, 19668, 57989);
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
DELETE FROM INTO spell_pet_auras WHERE aura = 57989;
|
||||
|
||||
INSERT INTO `spell_pet_auras` VALUES
|
||||
(58228, 0, 19668, 57989);
|
||||
|
|
@ -181,6 +181,7 @@ pkgdata_DATA = \
|
|||
8883_01_mangos_spell_proc_event.sql \
|
||||
8883_02_mangos_spell_bonus_data.sql \
|
||||
8886_01_mangos_string.sql \
|
||||
8889_01_mangos_spell_pet_auras.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -342,4 +343,5 @@ EXTRA_DIST = \
|
|||
8883_01_mangos_spell_proc_event.sql \
|
||||
8883_02_mangos_spell_bonus_data.sql \
|
||||
8886_01_mangos_string.sql \
|
||||
8889_01_mangos_spell_pet_auras.sql \
|
||||
README
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8889"
|
||||
#define REVISION_NR "8890"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_8874_01_characters_character_skills"
|
||||
#define REVISION_DB_MANGOS "required_8886_01_mangos_string"
|
||||
#define REVISION_DB_MANGOS "required_8889_01_mangos_spell_pet_auras"
|
||||
#define REVISION_DB_REALMD "required_8728_01_realmd_account"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue