From e41662da9dc6df49cfa5644b29708bd87cfc8330 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 18 Oct 2006 20:54:28 +0000 Subject: [PATCH] -- added 'WITH OIDS' when creating address_types table --- planetlab4.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/planetlab4.sql b/planetlab4.sql index da28e02..9ff0b62 100644 --- a/planetlab4.sql +++ b/planetlab4.sql @@ -9,7 +9,7 @@ -- -- Copyright (C) 2006 The Trustees of Princeton University -- --- $Id: planetlab4.sql,v 1.13 2006/10/17 15:27:38 tmack Exp $ +-- $Id: planetlab4.sql,v 1.14 2006/10/18 19:41:11 tmack Exp $ -- -------------------------------------------------------------------------------- @@ -121,7 +121,8 @@ CREATE TABLE address_types ( address_type_id serial PRIMARY KEY, -- Address type identifier name text UNIQUE NOT NULL, -- Address type description text -- Address type description -); +) WITH OIDS; + INSERT INTO address_types (name) VALUES ('Personal'); INSERT INTO address_types (name) VALUES ('Shipping'); -- XXX Used to be Site @@ -557,8 +558,10 @@ INSERT INTO object_types (object_type) VALUES ('Site'); INSERT INTO object_types (object_type) VALUES ('Node'); INSERT INTO object_types (object_type) VALUES ('Slice'); INSERT INTO object_types (object_type) VALUES ('Address'); +INSERT INTO object_types (object_type) VALUES ('AddressType'); INSERT INTO object_types (object_type) VALUES ('Attribute'); INSERT INTO object_types (object_type) VALUES ('Key'); +INSERT INTO object_types (object_type) VALUES ('KeyType'); INSERT INTO object_types (object_type) VALUES ('Nodegroup'); INSERT INTO object_types (object_type) VALUES ('Unknown'); -- 2.43.0