diff options
author | zottel <github@zottel.net> | 2011-12-06 00:02:29 -0800 |
---|---|---|
committer | zottel <github@zottel.net> | 2011-12-06 00:02:29 -0800 |
commit | cd3a02ab8e5aa2dc56ba3939e5d480e4966b11aa (patch) | |
tree | 2efc84f14303c5d8dd283a93b64f02851e969e3f /update.php | |
parent | c5c99089ff363831f199e27c188410fec682fda5 (diff) | |
parent | 47f369e052d296f4a744c1508efc58f6168b7e8b (diff) | |
download | volse-hubzilla-cd3a02ab8e5aa2dc56ba3939e5d480e4966b11aa.tar.gz volse-hubzilla-cd3a02ab8e5aa2dc56ba3939e5d480e4966b11aa.tar.bz2 volse-hubzilla-cd3a02ab8e5aa2dc56ba3939e5d480e4966b11aa.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index 6e7b5f2c1..d94bf82d1 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1108 ); +define( 'UPDATE_VERSION' , 1109 ); /** * @@ -923,4 +923,8 @@ function update_1107() { } +function update_1108() { + q("ALTER TABLE `contact` ADD `hidden` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `writable` , +ADD INDEX ( `hidden` ) "); +} |