mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[9630] Forgot to use git_id
Signed-off-by: hunuza <hunuza@gmail.com>
This commit is contained in:
parent
e7e97a13e0
commit
0150f48b52
5 changed files with 7 additions and 3 deletions
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `character_db_version`;
|
DROP TABLE IF EXISTS `character_db_version`;
|
||||||
CREATE TABLE `character_db_version` (
|
CREATE TABLE `character_db_version` (
|
||||||
`required_9611_01_characters` bit(1) default NULL
|
`required_9630_01_characters_characters` bit(1) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
ALTER TABLE character_db_version CHANGE COLUMN required_9611_01_characters required_9630_01_characters_characters bit;
|
||||||
|
|
||||||
ALTER TABLE characters
|
ALTER TABLE characters
|
||||||
ADD COLUMN `exploredZones` longtext AFTER activeSpec,
|
ADD COLUMN `exploredZones` longtext AFTER activeSpec,
|
||||||
ADD COLUMN `equipmentCache` longtext AFTER exploredZones,
|
ADD COLUMN `equipmentCache` longtext AFTER exploredZones,
|
||||||
|
|
@ -91,6 +91,7 @@ pkgdata_DATA = \
|
||||||
9590_01_mangos_db_script_string.sql \
|
9590_01_mangos_db_script_string.sql \
|
||||||
9611_01_characters.sql \
|
9611_01_characters.sql \
|
||||||
9622_01_mangos_gameobject.sql \
|
9622_01_mangos_gameobject.sql \
|
||||||
|
9630_01_characters_characters.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -162,4 +163,5 @@ EXTRA_DIST = \
|
||||||
9590_01_mangos_db_script_string.sql \
|
9590_01_mangos_db_script_string.sql \
|
||||||
9611_01_characters.sql \
|
9611_01_characters.sql \
|
||||||
9622_01_mangos_gameobject.sql \
|
9622_01_mangos_gameobject.sql \
|
||||||
|
9630_01_characters_characters.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 "9629"
|
#define REVISION_NR "9630"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef __REVISION_SQL_H__
|
#ifndef __REVISION_SQL_H__
|
||||||
#define __REVISION_SQL_H__
|
#define __REVISION_SQL_H__
|
||||||
#define REVISION_DB_CHARACTERS "required_9611_01_characters"
|
#define REVISION_DB_CHARACTERS "required_9630_01_characters_characters"
|
||||||
#define REVISION_DB_MANGOS "required_9622_01_mangos_gameobject"
|
#define REVISION_DB_MANGOS "required_9622_01_mangos_gameobject"
|
||||||
#define REVISION_DB_REALMD "required_9010_01_realmd_realmlist"
|
#define REVISION_DB_REALMD "required_9010_01_realmd_realmlist"
|
||||||
#endif // __REVISION_SQL_H__
|
#endif // __REVISION_SQL_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue