[7868] Added guard sql queries and 7867_01_realmd_account.sql to Makefile

"the stuff I forgot in previous commit", sorry

Signed-off-by: freghar <compmancz@gmail.com>
This commit is contained in:
freghar 2009-05-21 19:09:58 +02:00
parent 34ee1cffa2
commit fd074a71fb
4 changed files with 6 additions and 2 deletions

View file

@ -21,7 +21,7 @@
DROP TABLE IF EXISTS `realmd_db_version`;
CREATE TABLE `realmd_db_version` (
`required_7546_02_realmd_uptime` bit(1) default NULL
`required_7867_01_realmd_account` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
--

View file

@ -1,2 +1,4 @@
ALTER TABLE realmd_db_version CHANGE COLUMN required_7546_02_realmd_uptime required_7867_01_realmd_account bit;
ALTER TABLE `account` CHANGE COLUMN `last_ip` `last_ip` varchar(30) NOT NULL default '0.0.0.0';
ALTER TABLE `ip_banned` CHANGE COLUMN `ip` `ip` varchar(32) NOT NULL default '0.0.0.0';

View file

@ -190,6 +190,7 @@ pkgdata_DATA = \
7839_02_mangos_command.sql \
7850_01_mangos_command.sql \
7855_01_mangos_pools.sql \
7867_01_realmd_account.sql \
README
## Additional files to include when running 'make dist'
@ -360,4 +361,5 @@ EXTRA_DIST = \
7839_02_mangos_command.sql \
7850_01_mangos_command.sql \
7855_01_mangos_pools.sql \
7867_01_realmd_account.sql \
README

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7867"
#define REVISION_NR "7868"
#endif // __REVISION_NR_H__