[0018] Typo

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-08 09:57:01 +02:00 committed by Antz
parent 910e32bea6
commit 46052a6e55
3 changed files with 3 additions and 3 deletions

View file

@ -86,7 +86,7 @@ CREATE TABLE `account_access` (
`gmlevel` tinyint(3) unsigned NOT NULL, `gmlevel` tinyint(3) unsigned NOT NULL,
`RealmID` int(11) NOT NULL DEFAULT '-1', `RealmID` int(11) NOT NULL DEFAULT '-1',
PRIMARY KEY (`id`,`RealmID`) PRIMARY KEY (`id`,`RealmID`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='account access system';
-- --
-- Dumping data for table `account_access` -- Dumping data for table `account_access`

View file

@ -9,7 +9,7 @@ CREATE TABLE `account_access` (
`gmlevel` tinyint(3) unsigned NOT NULL, `gmlevel` tinyint(3) unsigned NOT NULL,
`RealmID` int(11) NOT NULL DEFAULT '-1', `RealmID` int(11) NOT NULL DEFAULT '-1',
PRIMARY KEY (`id`,`RealmID`) PRIMARY KEY (`id`,`RealmID`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8; ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='account access system';
INSERT INTO `account_access` VALUES INSERT INTO `account_access` VALUES
(1,3,-1), (1,3,-1),

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "0017" #define REVISION_NR "0018"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__