mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[10993] Fixed typo in recently add DB field comment.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
7ab08fd6a4
commit
52c4accb99
5 changed files with 10 additions and 4 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_10989_01_mangos_loot_template` bit(1) default NULL
|
||||
`required_10993_01_mangos_loot_template` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -1586,7 +1586,7 @@ UNLOCK TABLES;
|
|||
|
||||
DROP TABLE IF EXISTS `fishing_loot_template`;
|
||||
CREATE TABLE `fishing_loot_template` (
|
||||
`entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'entry 0 used for junk loot at fishing fail (if allowed by config option',
|
||||
`entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'entry 0 used for junk loot at fishing fail (if allowed by config option)',
|
||||
`item` mediumint(8) unsigned NOT NULL default '0',
|
||||
`ChanceOrQuestChance` float NOT NULL default '100',
|
||||
`groupid` tinyint(3) unsigned NOT NULL default '0',
|
||||
|
|
|
|||
4
sql/updates/10993_01_mangos_loot_template.sql
Normal file
4
sql/updates/10993_01_mangos_loot_template.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_10989_01_mangos_loot_template required_10993_01_mangos_loot_template bit;
|
||||
|
||||
ALTER TABLE fishing_loot_template
|
||||
CHANGE COLUMN entry entry mediumint(8) unsigned NOT NULL default '0' COMMENT 'entry 0 used for junk loot at fishing fail (if allowed by config option)';
|
||||
|
|
@ -149,6 +149,7 @@ pkgdata_DATA = \
|
|||
10973_01_mangos_game_event_mail.sql \
|
||||
10988_01_mangos_mangos_string.sql \
|
||||
10989_01_mangos_loot_template.sql \
|
||||
10993_01_mangos_loot_template.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -278,4 +279,5 @@ EXTRA_DIST = \
|
|||
10973_01_mangos_game_event_mail.sql \
|
||||
10988_01_mangos_mangos_string.sql \
|
||||
10989_01_mangos_loot_template.sql \
|
||||
10993_01_mangos_loot_template.sql \
|
||||
README
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "10992"
|
||||
#define REVISION_NR "10993"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_10973_01_characters_game_event_status"
|
||||
#define REVISION_DB_MANGOS "required_10989_01_mangos_loot_template"
|
||||
#define REVISION_DB_MANGOS "required_10993_01_mangos_loot_template"
|
||||
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue