diff options
author | friendica <info@friendica.com> | 2012-12-22 03:33:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-22 03:33:12 -0800 |
commit | f09b9f1e446ff005a19c451efccbd8b3806ef5f9 (patch) | |
tree | 2190b0ccfbb1075be7b0031f597fefdef3981688 /install | |
parent | 8d71fe91f67eeb501efd6fedd17992c12882daeb (diff) | |
download | volse-hubzilla-f09b9f1e446ff005a19c451efccbd8b3806ef5f9.tar.gz volse-hubzilla-f09b9f1e446ff005a19c451efccbd8b3806ef5f9.tar.bz2 volse-hubzilla-f09b9f1e446ff005a19c451efccbd8b3806ef5f9.zip |
add permission controls to "storage" objects such as attachments or other stored files
Diffstat (limited to 'install')
-rw-r--r-- | install/database.sql | 6 | ||||
-rw-r--r-- | install/update.php | 13 |
2 files changed, 16 insertions, 3 deletions
diff --git a/install/database.sql b/install/database.sql index 187c3dcf5..5581a27c6 100644 --- a/install/database.sql +++ b/install/database.sql @@ -159,6 +159,8 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_w_photos` tinyint(3) unsigned NOT NULL DEFAULT '128', `channel_w_chat` tinyint(3) unsigned NOT NULL DEFAULT '128', `channel_a_delegate` tinyint(3) unsigned NOT NULL DEFAULT '0', + `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', PRIMARY KEY (`channel_id`), KEY `channel_account_id` (`channel_account_id`), KEY `channel_primary` (`channel_primary`), @@ -186,7 +188,9 @@ CREATE TABLE IF NOT EXISTS `channel` ( KEY `channel_guid` (`channel_guid`), KEY `channel_hash` (`channel_hash`), KEY `channel_expire_days` (`channel_expire_days`), - KEY `channel_a_delegate` (`channel_a_delegate`) + KEY `channel_a_delegate` (`channel_a_delegate`), + KEY `channel_r_storage` (`channel_r_storage`), + KEY `channel_w_storage` (`channel_w_storage`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `clients` ( diff --git a/install/update.php b/install/update.php index 791371ec1..bdd687fb3 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1007 ); +define( 'UPDATE_VERSION' , 1008 ); /** * @@ -142,4 +142,13 @@ function update_r1006() { if($r && $r2) return UPDATE_SUCCESS; return UPDATE_FAILED; -}
\ No newline at end of file +} + + +function update_r1007() { + $r = q("ALTER TABLE `channel` ADD `channel_r_storage` INT UNSIGNED NOT NULL DEFAULT '128', ADD `channel_w_storage` INT UNSIGNED NOT NULL DEFAULT '128', add index ( channel_r_storage ), add index ( channel_w_storage )"); + + if($r && $r2) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |