aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-05 02:16:59 -0800
committerfriendica <info@friendica.com>2011-12-05 02:16:59 -0800
commitc8d5274ceea95bdf9df5ca2ab698fa9860319e31 (patch)
treee2d977f26214e30ba4e6e6059d58e26ad287bce3 /update.php
parent116e20c89dc5874912c7e3870623c747f75238ce (diff)
downloadvolse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.tar.gz
volse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.tar.bz2
volse-hubzilla-c8d5274ceea95bdf9df5ca2ab698fa9860319e31.zip
data structures to support hidden friends
Diffstat (limited to 'update.php')
-rw-r--r--update.php6
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` ) ");
+}