X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=db%2Flaconica.sql;h=a598e447094c72c2bb3699bf65eb5dde750317ef;hb=594811350c67feede35d50f05a9e1311b8c4c036;hp=cf3c51251c130c0ceb71587b4500f1cfb5cfdc00;hpb=9a3f73a672d657f71470d2d1b7a42321b42f5e34;p=quix0rs-gnu-social.git diff --git a/db/laconica.sql b/db/laconica.sql index cf3c51251c..a598e44709 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -47,6 +47,7 @@ create table user ( email varchar(255) unique key comment 'email address for password recovery etc.', incomingemail varchar(255) unique key comment 'email address for post-by-email', emailnotifysub tinyint default 1 comment 'Notify by email of subscriptions', + emailpost tinyint default 1 comment 'Post by email', jabber varchar(255) unique key comment 'jabber ID for notices', jabbernotify tinyint default 0 comment 'whether to send notices to jabber', jabberreplies tinyint default 0 comment 'whether to send notices to jabber on replies', @@ -200,6 +201,7 @@ create table remember_me ( create table queue_item ( notice_id integer not null primary key comment 'notice queued' references notice (id), + transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...', created datetime not null comment 'date this record was created', claimed datetime comment 'date this item was claimed',