diff options
author | Bezo <BezoCCCP@gmail.com> | 2013-04-26 00:58:34 +0300 |
---|---|---|
committer | Bezo <BezoCCCP@gmail.com> | 2013-04-26 12:50:14 +0300 |
commit | 619d9750121289a8648b379ceb61eade8a7a6fbb (patch) | |
tree | f5f9951e666264acd49c713a1f32bb75a3b1233c /sql/base | |
parent | 6dbd574a69071697788632db0d1a2dc662854a18 (diff) |
Update auth_database.sql due the added ip2nation tables.
Diffstat (limited to 'sql/base')
-rw-r--r-- | sql/base/auth_database.sql | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 943be73b20f..05e680f94eb 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -126,6 +126,32 @@ CREATE TABLE `ip_banned` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Banned IPs'; /*!40101 SET character_set_client = @saved_cs_client */; +/*Table structure for table `ip2nation` */ + +DROP TABLE IF EXISTS `ip2nation`; + +CREATE TABLE `ip2nation` ( + `ip` int(11) unsigned NOT NULL DEFAULT '0', + `country` char(2) NOT NULL DEFAULT '', + KEY `ip` (`ip`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +/*Table structure for table `ip2nationCountries` */ + +DROP TABLE IF EXISTS `ip2nationCountries`; + +CREATE TABLE `ip2nationCountries` ( + `code` varchar(4) NOT NULL DEFAULT '', + `iso_code_2` varchar(2) NOT NULL DEFAULT '', + `iso_code_3` varchar(3) DEFAULT '', + `iso_country` varchar(255) NOT NULL DEFAULT '', + `country` varchar(255) NOT NULL DEFAULT '', + `lat` float NOT NULL DEFAULT '0', + `lon` float NOT NULL DEFAULT '0', + PRIMARY KEY (`code`), + KEY `code` (`code`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + -- -- Dumping data for table `ip_banned` -- |