Move google analytics and scrolling code into main.js
[pgweb/local.git] / sql / iptocountry.sql
bloba2d8ae0f3e9fc23a7a3e345b41e9e86bd4280172
2 CREATE TABLE iptocountry (
3     id integer DEFAULT nextval(('iptocountry_id_seq'::text)::regclass) NOT NULL,
4     startip bigint NOT NULL,
5     endip bigint NOT NULL,
6     countrycode character(2) NOT NULL,
7     country character varying(100) NOT NULL
8 );
11 ALTER TABLE ONLY iptocountry
12     ADD CONSTRAINT iptocountry_pkey PRIMARY KEY (id);