Ignore:
Timestamp:
02/19/10 13:10:34 (14 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Basic support for network node references: Add, view, edit nodes and

referencess

Probably excludes a bunch of real use-cases for various reasons

File:
1 edited

Legend:

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

    r377 r394  
    212212);
    213213
     214-- Network nodes - allows finding customers affected by a broken <x> quickly
     215CREATE TABLE noderef (
     216    block inet NOT NULL PRIMARY KEY,
     217    node_id integer
     218);
     219
     220CREATE TABLE nodes (
     221    node_id serial NOT NULL PRIMARY KEY,
     222    node_type character varying(2),
     223    node_name character varying(40),
     224    node_ip inet
     225);
Note: See TracChangeset for help on using the changeset viewer.