streams/Zotlabs/Update/_1226.php

22 lines
346 B
PHP
Raw Normal View History

<?php
namespace Zotlabs\Update;
class _1226 {
function run() {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r = q("alter table item add item_level bigint NOT NULL DEFAULT '0'");
}
else {
$r = q("alter table item add item_level int(10) NOT NULL DEFAULT 0 ");
}
if($r) {
return UPDATE_SUCCESS;
}
return UPDATE_FAILED;
}
}