poco discovery

This commit is contained in:
friendica
2013-01-01 01:57:20 -08:00
parent 6accc190d4
commit 93d85858d5
5 changed files with 18 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1012 );
define( 'UPDATE_VERSION' , 1013 );
/**
*
@@ -189,3 +189,11 @@ ADD INDEX ( `expires` )");
return UPDATE_FAILED;
}
function update_r1012() {
$r = q("ALTER TABLE `xchan` ADD `xchan_connurl` CHAR( 255 ) NOT NULL DEFAULT '' AFTER `xchan_url` ,
ADD INDEX ( `xchan_connurl` )");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}