1
0
Fork 0

ability to link contacts that are "really me, but on another system/network".

This commit is contained in:
Friendika 2011-07-05 19:55:09 -07:00
commit d7154a4606
5 changed files with 21 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1073 );
define( 'UPDATE_VERSION' , 1074 );
/**
*
@ -585,3 +585,8 @@ function update_1072() {
q("ALTER TABLE `item` ADD `starred` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `visible` ");
q("ALTER TABLE `item` ADD INDEX ( `starred` ) ");
}
function update_1073() {
q("ALTER TABLE `contact` ADD `remote_self` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `self` ");
}