Browse Source

this should have been part of 62b9da6

spaghetti 8 years ago
parent
commit
e92c724a07
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      gazelle.sql

+ 7
- 0
gazelle.sql View File

@@ -494,6 +494,13 @@ CREATE TABLE `geoip_country` (
494 494
   PRIMARY KEY (`StartIP`,`EndIP`)
495 495
 ) ENGINE=InnoDB CHARSET=utf8;
496 496
 
497
+CREATE TABLE `geoip_asn` (
498
+  `StartIP` varbinary(16) NOT NULL,
499
+  `EndIP` varbinary(16) NOT NULL,
500
+  `ASN` decimal(10,0) NOT NULL,
501
+  PRIMARY KEY (`StartIP`,`EndIP`)
502
+) ENGINE=InnoDB CHARSET=utf8;
503
+
497 504
 CREATE TABLE `group_log` (
498 505
   `ID` int(10) NOT NULL AUTO_INCREMENT,
499 506
   `GroupID` int(10) NOT NULL,

Loading…
Cancel
Save