mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
14 lines
240 B
PHP
14 lines
240 B
PHP
<?php
|
|
|
|
namespace Zotlabs\Update;
|
|
|
|
class _1020 {
|
|
function run() {
|
|
$r = q("alter table photo drop `contact-id`, drop guid, drop index `resource-id`, add index ( `resource_id` )");
|
|
if($r)
|
|
return UPDATE_SUCCESS;
|
|
return UPDATE_FAILED;
|
|
}
|
|
|
|
|
|
} |