]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add user_location_prefs to upgrade script
authorEvan Prodromou <evan@status.net>
Mon, 28 Dec 2009 21:54:09 +0000 (13:54 -0800)
committerEvan Prodromou <evan@status.net>
Mon, 28 Dec 2009 23:57:17 +0000 (15:57 -0800)
db/08to09.sql

index 28ec3ec16b779eaf416b05448daf8d651d6940c4..d9c25bc723ade4610b69951a7dc9e6466e7e4391 100644 (file)
@@ -84,3 +84,13 @@ create table login_token (
 
     constraint primary key (user_id)
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table user_location_prefs (
+    user_id integer not null comment 'user who has the preference' references user (id),
+    share_location tinyint default 1 comment 'Whether to share location data',
+    created datetime not null comment 'date this record was created',
+    modified timestamp comment 'date this record was modified',
+
+    constraint primary key (user_id)
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+