* VRFS-315; max_mind_isp table added
This commit is contained in:
parent
a4674ce7e9
commit
219368c874
1
manifest
1
manifest
|
|
@ -64,3 +64,4 @@ recordings2.sql
|
|||
update_email.sql
|
||||
claimed_recordings2.sql
|
||||
users_favorites.sql
|
||||
max_mind_isp.sql
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue