streams/Zotlabs/Update/_1229.php

24 lines
423 B
PHP
Raw Normal View History

2019-03-06 01:27:16 +00:00
<?php
namespace Zotlabs\Update;
class _1229 {
function run() {
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 ");
}
if($r) {
return UPDATE_SUCCESS;
}
return UPDATE_FAILED;
}
}