Changeset 807 for trunk/cgi-bin
- Timestamp:
- 03/08/16 13:05:06 (9 years ago)
- Location:
- trunk/cgi-bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/ipdb-2.7-3.0.sql
r794 r807 26 26 bkip inet 27 27 ); 28 29 -- VRFs are now the apex entity 30 CREATE TABLE vrfs ( 31 vrf varchar(32) DEFAULT '' NOT NULL, 32 comment text DEFAULT '' NOT NULL, 33 location varchar(4) DEFAULT '' NOT NULL 34 ); 35 36 ALTER TABLE ONLY vrfs 37 ADD CONSTRAINT vrfs_pkey PRIMARY KEY (vrf); 38 39 -- need a default VRF to stuff everything into to start with 40 INSERT INTO vrfs (vrf,comment) VALUES ('DEFAULT','Initial default VRF'); 28 41 29 42 -- Master and routed blocks now live in the allocations table. -
trunk/cgi-bin/ipdb.psql
r804 r807 20 20 "type" character(2) DEFAULT ''::bpchar, 21 21 city character varying(30) DEFAULT ''::character varying, 22 description character varying( 64) DEFAULT ''::character varying,22 description character varying(128) DEFAULT ''::character varying, 23 23 notes text DEFAULT ''::text, 24 24 maskbits integer DEFAULT 128, … … 125 125 available character(1) DEFAULT 'y'::bpchar NOT NULL, 126 126 notes text DEFAULT ''::text NOT NULL, 127 description character varying( 64) DEFAULT ''::character varying NOT NULL,127 description character varying(128) DEFAULT ''::character varying NOT NULL, 128 128 circuitid character varying(128) DEFAULT ''::character varying NOT NULL, 129 129 privdata text DEFAULT ''::text NOT NULL,
Note:
See TracChangeset
for help on using the changeset viewer.