streams/Zotlabs/Update/_1186.php
2021-12-03 10:02:31 +11:00

20 lines
No EOL
247 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;
}
}