1
0
Fork 0

data structures to support hidden friends

This commit is contained in:
friendica 2011-12-05 02:16:59 -08:00
commit c8d5274cee
7 changed files with 16 additions and 10 deletions

View file

@ -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` ) ");
}