]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/laconica.sql
email settings for post by email
[quix0rs-gnu-social.git] / db / laconica.sql
index cf3c51251c130c0ceb71587b4500f1cfb5cfdc00..a598e447094c72c2bb3699bf65eb5dde750317ef 100644 (file)
@@ -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',