]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added user_location_prefs to upgrade script
authorBrenda Wallace <shiny@cpan.org>
Thu, 27 May 2010 03:00:58 +0000 (03:00 +0000)
committerBrenda Wallace <shiny@cpan.org>
Thu, 27 May 2010 03:00:58 +0000 (03:00 +0000)
db/08to09_pg.sql

index b7a0eb8e8c61a2d6b3bdb27d9ed1efd34260217b..cc1edc5ec0f9dcc69c5cec1d444b25c1504a8b12 100644 (file)
@@ -101,3 +101,13 @@ alter table queue_item rename to queue_item_old;
 alter table queue_item_new rename to queue_item;
 
 
+create table user_location_prefs (
+    user_id integer not null /*comment 'user who has the preference'*/ references "user" (id),
+    share_location int default 1 /* comment 'Whether to share location data'*/,
+    created timestamp not null /*comment 'date this record was created'*/,
+    modified timestamp /* comment 'date this record was modified'*/,
+
+    primary key (user_id)
+);
+