From b139be6caf39628834ca34f5f7e58c1e08a3ebf3 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Wed, 9 Dec 2009 13:09:38 +1300 Subject: added missing table: location_namespace --- db/08to09_pg.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'db/08to09_pg.sql') diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index 0bd47dea5..ee590b52f 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -39,6 +39,16 @@ create table profile_role ( ); +create table location_namespace ( + + id integer /*comment 'identity for this namespace'*/, + description text /* comment 'description of the namespace'*/ , + created integer not null /*comment 'date the record was created*/ , + /* modified timestamp comment 'date this record was modified',*/ + primary key (id) + +); + create table login_token ( user_id integer not null /* comment 'user owning this token'*/ references "user" (id), token char(32) not null /* comment 'token useable for logging in'*/, -- cgit v1.2.3-54-g00ecf