streams/Zotlabs/Update/_1186.php
2021-12-03 14:01:39 +11:00

17 lines
256 B
PHP

<?php
namespace Zotlabs\Update;
class _1186
{
public function run()
{
$r1 = q("alter table profile add profile_vcard text not null");
if ($r1) {
return UPDATE_SUCCESS;
}
return UPDATE_FAILED;
}
}