Ignore:
Timestamp:
09/23/05 15:54:31 (19 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Merge changes from /trunk revisions:

234
237
254 (ipdb.css only)
261
279
284
285

This merges the new search system (234, 237, 254), cleans up
some display CSS (254, 279), cleans up some leftover code (r261),
and merges the "private data" code (284, 285 - note SWIP hacks conflict).

/trunk should now be almost identical to /branches/stable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/ipdb.psql

    r268 r286  
    6969        "description" character varying(64) DEFAULT '' NOT NULL,
    7070        "circuitid" character varying(128) DEFAULT '' NOT NULL,
     71        "privdata" text DEFAULT '' NOT NULL,
    7172        "newcustid" integer,
    7273        CHECK (((available = 'y'::bpchar) OR (available = 'n'::bpchar)))
     
    8687        "maskbits" integer DEFAULT 128,
    8788        "circuitid" character varying(128) DEFAULT '',
     89        "privdata" text DEFAULT '' NOT NULL,
    8890        "newcustid" integer
    8991);
     
    9395GRANT ALL on "allocations" to "ipdb";
    9496
    95 CREATE VIEW "searchme" as SELECT allocations.cidr, allocations.custid, allocations."type", allocations.city, allocations.description FROM allocations UNION SELECT poolips.ip, poolips.custid, poolips.type, poolips.city, poolips.description FROM poolips;
     97CREATE VIEW "searchme" as SELECT allocations.cidr, allocations.custid, allocations."type", allocations.city, allocations.description, allocations.notes FROM allocations UNION SELECT poolips.ip, poolips.custid, poolips.type, poolips.city, poolips.description, poolips.notes FROM poolips;
    9698
    9799REVOKE ALL on "searchme" from PUBLIC;
Note: See TracChangeset for help on using the changeset viewer.