diff options
author | Spp <none@none> | 2010-05-05 02:06:08 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-05-05 02:06:08 +0200 |
commit | 7de6dea6076e10884b9332c28eb0812ad7127885 (patch) | |
tree | 1af214e9d81fd58945f9076b8649c0a37ecb076e | |
parent | 52893aeae229465a05867f8b1df7b9bb8b83718b (diff) |
Account access: Set default value -1 to realmId (All realms access)
Patch by Sundark
closes issue 1852
--HG--
branch : trunk
-rw-r--r-- | sql/realmd.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/realmd.sql b/sql/realmd.sql index dd28dccbd4f..50940b45705 100644 --- a/sql/realmd.sql +++ b/sql/realmd.sql @@ -25,7 +25,7 @@ DROP TABLE IF EXISTS `account_access`; CREATE TABLE `account_access` ( `id` int(11) unsigned NOT NULL, `gmlevel` tinyint(3) unsigned NOT NULL, - `RealmID` int(11) NOT NULL, + `RealmID` int(11) NOT NULL default '-1', PRIMARY KEY (`id`,`RealmID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; |