- Timestamp:
- 12/18/14 17:48:15 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/ipdb.psql
r656 r657 37 37 CREATE TABLE "masterblocks" ( 38 38 "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY, 39 "ctime" timestamp DEFAULT now(),40 "mtime" timestamp DEFAULT now(),39 "ctime" timestamp with time zone DEFAULT now(), 40 "mtime" timestamp with time zone DEFAULT now(), 41 41 "rwhois" character(1) DEFAULT 'n' NOT NULL 42 42 ); … … 49 49 "maskbits" integer DEFAULT 128, 50 50 "city" character varying(30) DEFAULT '', 51 "ctime" timestamp DEFAULT now()51 "ctime" timestamp with time zone DEFAULT now() 52 52 ); 53 53 … … 77 77 "privdata" text DEFAULT '' NOT NULL, 78 78 "custid" character varying(16) DEFAULT '', 79 "createstamp" timestamp DEFAULT now(),80 "modifystamp" timestamp DEFAULT now(),79 "createstamp" timestamp with time zone DEFAULT now(), 80 "modifystamp" timestamp with time zone DEFAULT now(), 81 81 CHECK (((available = 'y'::bpchar) OR (available = 'n'::bpchar))) 82 82 ); … … 93 93 "maskbits" integer DEFAULT 128, 94 94 "circuitid" character varying(128) DEFAULT '', 95 "createstamp" timestamp DEFAULT now(),96 "modifystamp" timestamp DEFAULT now(),95 "createstamp" timestamp with time zone DEFAULT now(), 96 "modifystamp" timestamp with time zone DEFAULT now(), 97 97 "privdata" text DEFAULT '' NOT NULL, 98 98 "custid" character varying(16) DEFAULT '',
Note:
See TracChangeset
for help on using the changeset viewer.