summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-21 00:05:51 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-21 00:05:51 -0400
commit0c0ac46f434bfe9142f4f2c74e8e65d4cc08265a (patch)
treeff586505fc90975710342bceead3f33b2c5cb042 /db
parent3345f54186262c29b79efd18b4546eff8a6d0c0b (diff)
add flag for sms replies
darcs-hash:20080721040551-84dde-f6c76d806969ccaa772da31235baaf7d9b065c15.gz
Diffstat (limited to 'db')
-rw-r--r--db/laconica.sql5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index 84e1d1fac..66510b148 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -55,11 +55,14 @@ create table user (
sms varchar(64) unique key comment 'sms phone number',
carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
smsnotify tinyint default 0 comment 'whether to send notices to SMS',
+ smsreplies tinyint default 0 comment 'whether to send notices to SMS on replies',
smsemail varchar(255) comment 'built from sms and carrier',
uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
created datetime not null comment 'date this record was created',
- modified timestamp comment 'date this record was modified'
+ modified timestamp comment 'date this record was modified',
+
+ index user_smsemail_idx (smsemail)
) ENGINE=MyISAM;
/* remote people */