]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add flag for sms replies
authorEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:05:51 +0000 (00:05 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:05:51 +0000 (00:05 -0400)
darcs-hash:20080721040551-84dde-f6c76d806969ccaa772da31235baaf7d9b065c15.gz

classes/User.php
classes/stoica.ini
db/laconica.sql

index f22144e5cd46174c937b173c44f62bf1a1dff6c6..a6cab262cc8241f0e1c64f3c7dd336bcf81bd8f4 100644 (file)
@@ -44,6 +44,7 @@ class User extends DB_DataObject
     public $sms;                             // varchar(64)  unique_key
     public $carrier;                         // int(4)  
     public $smsnotify;                       // tinyint(1)  
+    public $smsreplies;                      // tinyint(1)  
     public $smsemail;                        // varchar(255)  
     public $uri;                             // varchar(255)  unique_key
     public $autosubscribe;                   // tinyint(1)  
index cffefa96d71a75018b23995721e5b66681dfa2c2..99196909e9bb66915039a8427aaeadfe50c96112 100644 (file)
@@ -168,6 +168,7 @@ updatefrompresence = 17
 sms = 2
 carrier = 1
 smsnotify = 17
+smsreplies = 17
 smsemail = 2
 uri = 2
 autosubscribe = 17
index 84e1d1fac56fa9a7119010050503d60c84b598af..66510b148bccda8fb8b3824ece6f0a5d6a5fa725 100644 (file)
@@ -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 */