]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add table user_location_prefs
authorEvan Prodromou <evan@status.net>
Mon, 28 Dec 2009 21:53:28 +0000 (13:53 -0800)
committerEvan Prodromou <evan@status.net>
Mon, 28 Dec 2009 23:57:04 +0000 (15:57 -0800)
db/statusnet.sql

index 6b3c2ca068a0339aff53a831e0c1818e3d00a716..94b03df639172146dff192e21634e2ff1db5362b 100644 (file)
@@ -587,3 +587,12 @@ 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;
+