Add user_location_prefs to upgrade script

This commit is contained in:
Evan Prodromou 2009-12-28 13:54:09 -08:00
parent a9d31da210
commit f9ad0f596b
1 changed files with 10 additions and 0 deletions

View 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;