diff options
author | friendica <info@friendica.com> | 2011-11-18 21:55:00 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-18 21:55:00 -0800 |
commit | d53db63d41d2f253c9aff806d9830167c9dd7a8d (patch) | |
tree | 66adeb7eae8ba08bc1eecf89f5d351e0052bf726 /update.php | |
parent | fa4742e6eec1850f1bb53e38379cf2aac650cc3b (diff) | |
download | volse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.tar.gz volse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.tar.bz2 volse-hubzilla-d53db63d41d2f253c9aff806d9830167c9dd7a8d.zip |
forum split delivery flag
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/update.php b/update.php index 14d68ea12..96fdec691 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1104 ); +define( 'UPDATE_VERSION' , 1105 ); /** * @@ -895,4 +895,11 @@ function update_1103() { } +function update_1104() { + q("ALTER TABLE `item` ADD `forum_mode` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `origin` , ADD INDEX ( `forum_mode` ) "); + +} + + + |