]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add autosubscribe flag to users
authorEvan Prodromou <evan@prodromou.name>
Sun, 20 Jul 2008 20:05:30 +0000 (16:05 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sun, 20 Jul 2008 20:05:30 +0000 (16:05 -0400)
darcs-hash:20080720200530-84dde-dade3117bdf510c1880d35f27bd9352995725175.gz

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

index 82e1002a4d76536daad3824d5bd44d51af9275b8..36111ac0c33036475ed117e12831b3b38796e508 100644 (file)
@@ -45,6 +45,7 @@ class User extends DB_DataObject
     public $carrier;                         // int(4)  
     public $smsnotify;                       // tinyint(1)  
     public $uri;                             // varchar(255)  unique_key
+    public $autosubscribe;                   // tinyint(1)  
     public $created;                         // datetime()   not_null
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
index c79e095dce88928bad4ccc3957e4524386d542ac..955b4d9fcf4fb49e5366d0e087ffac47c71530ac 100644 (file)
@@ -169,6 +169,7 @@ sms = 2
 carrier = 1
 smsnotify = 17
 uri = 2
+autosubscribe = 17
 created = 142
 modified = 384
 
index a598e447094c72c2bb3699bf65eb5dde750317ef..3c8478beba0519df727514508f9678a8d3ce11fc 100644 (file)
@@ -56,6 +56,7 @@ create table user (
     carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
     smsnotify tinyint default 0 comment 'whether to send notices to SMS',
     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'
 ) ENGINE=MyISAM;