From: Brenda Wallace Date: Thu, 27 May 2010 03:00:58 +0000 (+0000) Subject: added user_location_prefs to upgrade script X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=11398190f0614ec73ecdfefc9d29cbe3f7703323;p=quix0rs-gnu-social.git added user_location_prefs to upgrade script --- diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index 1c9a31699a..de228c117b 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -102,3 +102,13 @@ alter table queue_item_new rename to queue_item; ALTER TABLE confirm_address ALTER column sent set default CURRENT_TIMESTAMP; +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) +); + +