streams/Code/Update/_1207.php

25 lines
378 B
PHP
Raw Normal View History

<?php
2022-02-16 04:08:28 +00:00
namespace Code\Update;
2021-12-02 23:02:31 +00:00
class _1207
{
2021-12-02 23:02:31 +00:00
public function run()
{
2021-12-02 23:02:31 +00:00
if (ACTIVE_DBTYPE == DBTYPE_MYSQL) {
$r = q("ALTER TABLE item
DROP INDEX resource_type
");
2021-12-03 03:01:39 +00:00
if ($r) {
2021-12-02 23:02:31 +00:00
return UPDATE_SUCCESS;
2021-12-03 03:01:39 +00:00
}
2021-12-02 23:02:31 +00:00
return UPDATE_FAILED;
} else {
return UPDATE_SUCCESS;
}
}
}