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

16 lines
356 B
PHP

<?php
namespace Zotlabs\Update;
class _1008
{
public function run()
{
$r = q("alter table profile drop prv_keywords, CHANGE `pub_keywords` `keywords` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, drop index pub_keywords");
if ($r) {
return UPDATE_SUCCESS;
}
return UPDATE_FAILED;
}
}