diff options
author | friendica <info@friendica.com> | 2013-09-30 21:49:26 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-30 21:49:26 -0700 |
commit | dffce63662c54db7ebb61786d39db6a900d1381f (patch) | |
tree | 88004c4a8362f4ee77bf670207076f76d876eb84 /install/database.sql | |
parent | 2353e6d23f54902d3b2b9e3fd46f1baa6e803450 (diff) | |
download | volse-hubzilla-dffce63662c54db7ebb61786d39db6a900d1381f.tar.gz volse-hubzilla-dffce63662c54db7ebb61786d39db6a900d1381f.tar.bz2 volse-hubzilla-dffce63662c54db7ebb61786d39db6a900d1381f.zip |
implement republish permission for use in sourced channels
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 77070027c..eb573fb4d 100644 --- a/install/database.sql +++ b/install/database.sql @@ -181,6 +181,7 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128', `channel_w_pages` int(10) unsigned NOT NULL DEFAULT '128', + `channel_a_republish` int(1) unsigned NOT NULL DEFAULT '128', PRIMARY KEY (`channel_id`), UNIQUE KEY `channel_address_unique` (`channel_address`), KEY `channel_account_id` (`channel_account_id`), @@ -213,6 +214,7 @@ CREATE TABLE IF NOT EXISTS `channel` ( KEY `channel_w_storage` (`channel_w_storage`), KEY `channel_r_pages` (`channel_r_pages`), KEY `channel_w_pages` (`channel_w_pages`), + KEY `channel_a_republish` (`channel_a_republish`), KEY `channel_deleted` (`channel_deleted`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |