streams/Zotlabs/Update/_1242.php

44 lines
926 B
PHP
Raw Normal View History

2020-09-02 05:47:32 +00:00
<?php
namespace Zotlabs\Update;
2021-12-02 23:02:31 +00:00
class _1242
{
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
public function run()
{
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
q("START TRANSACTION");
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("ALTER TABLE xchan ADD xchan_updated timestamp NOT NULL DEFAULT '0001-01-01 00:00:00' ");
$r2 = q("create index \"xchan_updated_idx\" on xchan (\"xchan_updated\")");
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
$r = ($r1 && $r2);
} else {
$r = q("ALTER TABLE `xchan` ADD `xchan_updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' ,
ADD INDEX `xchan_updated` (`xchan_updated`)");
}
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
if ($r) {
q("COMMIT");
return UPDATE_SUCCESS;
}
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
q("ROLLBACK");
return UPDATE_FAILED;
}
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
public function verify()
{
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
$columns = db_columns('xchan');
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
if (in_array('xchan_updated', $columns)) {
return true;
}
2020-09-02 05:47:32 +00:00
2021-12-02 23:02:31 +00:00
return false;
}
2020-09-02 05:47:32 +00:00
}