more vcard work

This commit is contained in:
zotlabs
2016-12-21 15:03:33 -08:00
parent fcc92299eb
commit bb85e139f1
8 changed files with 18 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1186 );
define( 'UPDATE_VERSION' , 1187 );
/**
*
@@ -2481,3 +2481,14 @@ function update_r1185() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1186() {
$r1 = q("alter table profile add profile_vcard text not null default '' ");
if($r1)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}