database changes to say whether to deliver messages for a subscription

darcs-hash:20081209033637-5ed1f-df5ef40e57cc0e9485e34e2f5e46249dcb0d9130.gz
This commit is contained in:
Evan Prodromou
2008-12-08 22:36:37 -05:00
parent 8286fd1281
commit a68f513cc8
3 changed files with 6 additions and 0 deletions

View File

@@ -88,6 +88,8 @@ create table remote_profile (
create table subscription (
subscriber integer not null comment 'profile listening',
subscribed integer not null comment 'profile being listened to',
jabber tinyint default 1 comment 'deliver jabber messages',
sms tinyint default 1 comment 'deliver sms messages',
token varchar(255) comment 'authorization token',
secret varchar(255) comment 'token secret',
created datetime not null comment 'date this record was created',