provide backend storage and declaration of directory realm

This commit is contained in:
friendica
2014-08-16 16:10:35 -07:00
parent ba0bf596b5
commit 20bdcb037f
7 changed files with 35 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1121 );
define( 'UPDATE_VERSION' , 1122 );
/**
*
@@ -1360,3 +1360,12 @@ ADD INDEX ( `public_policy` )");
}
function update_r1121() {
$r = q("ALTER TABLE `site` ADD `site_realm` CHAR( 255 ) NOT NULL DEFAULT '',
ADD INDEX ( `site_realm` )");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}