]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add a privacy flag to user table
authorEvan Prodromou <evan@status.net>
Wed, 30 Mar 2011 10:37:13 +0000 (06:37 -0400)
committerEvan Prodromou <evan@status.net>
Wed, 30 Mar 2011 10:37:13 +0000 (06:37 -0400)
db/core.php

index 90f5fb3f9f28b6a4db03e03bccbde152df08037b..fc3461a7a0a82eff0bb91b33ed2eb9dda7568662 100644 (file)
@@ -123,6 +123,7 @@ $schema['user'] = array(
         'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'),
         'design_id' => array('type' => 'int', 'description' => 'id of a design'),
         'viewdesigns' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to view user-provided designs'),
+        'private_stream' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to limit all notices to followers only'),
 
         'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
         'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),