WIP ports XKeyScore from TG

This commit is contained in:
Kyep
2019-04-22 16:53:20 -07:00
parent d9d975a91f
commit 4561ee94f8
10 changed files with 245 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
CREATE TABLE `ipintel` (
`ip` INT UNSIGNED NOT NULL ,
`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
`intel` REAL NOT NULL DEFAULT '0',
PRIMARY KEY ( `ip` )
) ENGINE = INNODB;