Ignore:
Timestamp:
05/14/13 17:45:17 (11 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Merge /trunk changes up to r516

Location:
branches/stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/stable

  • branches/stable/cgi-bin/ipdb.psql

    r507 r592  
    4747        "pool" cidr DEFAULT '255.255.255.255/32' NOT NULL,
    4848        "ip" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
    49         "oldcustid" character varying(16) DEFAULT '' NOT NULL,
    5049        "city" character varying(30) DEFAULT '' NOT NULL,
    5150        "type" character(2) DEFAULT '' NOT NULL,
     
    6362CREATE TABLE "allocations" (
    6463        "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
    65         "oldcustid" character varying(16) DEFAULT '',
    6664        "type" character(2) DEFAULT '',
    6765        "city" character varying(30) DEFAULT '',
     
    7775);
    7876
    79 CREATE VIEW "searchme" as SELECT allocations.cidr, allocations.custid, allocations."type", allocations.city, allocations.description, allocations.notes, allocations.oldcustid, allocations.circuitid FROM allocations UNION SELECT poolips.ip, poolips.custid, poolips.type, poolips.city, poolips.description, poolips.notes, poolips.oldcustid, poolips.circuitid FROM poolips;
     77CREATE VIEW "searchme" as SELECT allocations.cidr, allocations.custid, allocations."type", allocations.city, allocations.description, allocations.notes, allocations.circuitid FROM allocations UNION SELECT poolips.ip, poolips.custid, poolips.type, poolips.city, poolips.description, poolips.notes, poolips.circuitid FROM poolips;
    8078
    8179CREATE TABLE "alloctypes" (
Note: See TracChangeset for help on using the changeset viewer.