diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
commit | cb05e677a96e1312263c0a1c63ee10cea62268b1 (patch) | |
tree | 9234db8ab0c946ed65123181acba0df71524a8eb /update.php | |
parent | a86fd26bd86945fe75b7220e149b8986f88feb01 (diff) | |
parent | aaedac8f574278fba89cd11d3d8f1adaeb6b030e (diff) | |
download | volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.gz volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.bz2 volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.zip |
Merge remote-tracking branch 'friendica/master'
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` ) "); + +} + + + |