diff options
author | zottel <github@zottel.net> | 2012-03-16 08:33:01 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-03-16 08:33:01 +0100 |
commit | ea4c806c5c3adacb6ef585de657e5f34c2e24c98 (patch) | |
tree | 1e3314f76eefd8f7d014ae8e4a218dc9663ae3d7 /update.php | |
parent | 69f4448adaf7afddf00deeb2f832938d5505abcf (diff) | |
parent | 47e1b8d0c07d79c33f8b2de52145aa751d4b955a (diff) | |
download | volse-hubzilla-ea4c806c5c3adacb6ef585de657e5f34c2e24c98.tar.gz volse-hubzilla-ea4c806c5c3adacb6ef585de657e5f34c2e24c98.tar.bz2 volse-hubzilla-ea4c806c5c3adacb6ef585de657e5f34c2e24c98.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index c29394b48..6a685a6ff 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1131 ); +define( 'UPDATE_VERSION' , 1132 ); /** * @@ -1122,3 +1122,8 @@ function update_1130() { q("ALTER TABLE `item` ADD `file` MEDIUMTEXT NOT NULL AFTER `inform`, ADD FULLTEXT KEY (`file`) "); } +function update_1131() { + q("ALTER TABLE `contact` ADD `forum` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `writable` , ADD INDEX ( `forum` ) "); +} + + |