streams/Code/Update/_1229.php

23 lines
498 B
PHP
Raw Normal View History

2019-03-06 01:27:16 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Update;
2019-03-06 01:27:16 +00:00
2021-12-02 23:02:31 +00:00
class _1229
{
2019-03-06 01:27:16 +00:00
2021-12-02 23:02:31 +00:00
public function run()
{
2019-03-06 01:27:16 +00:00
2021-12-02 23:02:31 +00:00
if (ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r = q("ALTER TABLE " . TQUOT . 'xchan' . TQUOT . " RENAME COLUMN xchan_pubforum to xchan_type ");
} else {
$r = q("ALTER TABLE " . TQUOT . 'xchan' . TQUOT . " CHANGE xchan_pubforum xchan_type tinyint(1) NOT NULL default 0 ");
}
2019-03-06 01:27:16 +00:00
2021-12-02 23:02:31 +00:00
if ($r) {
return UPDATE_SUCCESS;
}
return UPDATE_FAILED;
}
2019-03-06 01:27:16 +00:00
}