]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added missing table: location_namespace
authorBrenda Wallace <shiny@cpan.org>
Wed, 9 Dec 2009 00:09:38 +0000 (13:09 +1300)
committerBrenda Wallace <shiny@cpan.org>
Wed, 9 Dec 2009 00:09:38 +0000 (13:09 +1300)
db/08to09_pg.sql
db/statusnet_pg.sql

index 0bd47dea56b06d78de6d432f4193b2927a384141..ee590b52f9139b7219b7766969b27fc44a07d5a0 100644 (file)
@@ -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'*/,
index 81b329d1e5310915c2ba38ab99f238576b9df71e..92546c814d696b544e089f7a57ecbfbf946b1399 100644 (file)
@@ -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'*/,