From: Evan Prodromou Date: Wed, 30 Mar 2011 10:37:13 +0000 (-0400) Subject: add a privacy flag to user table X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9d0ccbff01c1d861d152e30feeb2094f5a2742b4;p=quix0rs-gnu-social.git add a privacy flag to user table --- diff --git a/db/core.php b/db/core.php index 90f5fb3f9f..fc3461a7a0 100644 --- a/db/core.php +++ b/db/core.php @@ -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'),