* VRFS-315; max_mind_isp table added

This commit is contained in:
Seth Call 2013-05-16 11:44:29 -05:00
parent a4674ce7e9
commit 219368c874
2 changed files with 11 additions and 0 deletions

View File

@ -64,3 +64,4 @@ recordings2.sql
update_email.sql
claimed_recordings2.sql
users_favorites.sql
max_mind_isp.sql

10
up/max_mind_isp.sql Normal file
View File

@ -0,0 +1,10 @@
CREATE TABLE max_mind_isp (
ip_bottom INTEGER,
ip_top INTEGER,
isp VARCHAR(255)
);
CREATE INDEX max_mind_isp_ip_bottom_idx ON max_mind_isp(ip_bottom);
CREATE INDEX max_mind_isp_ip_top_idx ON max_mind_isp(ip_top);