blob: d5db24bc0fa858722f813ff1d01725444d67613f (
plain) (
tree)
|
|
<?php
namespace Zotlabs\Update;
class _1008 {
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;
}
}
|