From: Brenda Wallace Date: Wed, 9 Dec 2009 00:09:38 +0000 (+1300) Subject: added missing table: location_namespace X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b139be6caf39628834ca34f5f7e58c1e08a3ebf3;p=quix0rs-gnu-social.git added missing table: location_namespace --- diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index 0bd47dea56..ee590b52f9 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'*/, diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 81b329d1e5..92546c814d 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -572,6 +572,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'*/,