Mods-for-HESK-Netsyms/install/migrations/v220/AddClosableColumnToStatuses.php

16 lines
566 B
PHP
Raw Normal View History

2017-10-02 22:02:26 -04:00
<?php
namespace v220;
class AddClosableColumnToStatuses extends \AbstractMigration {
function up($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "statuses` ADD COLUMN `Closable` VARCHAR(10) NOT NULL");
$this->executeQuery("UPDATE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "statuses` SET `Closable` = 'yes'");
}
function down($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "statuses` DROP COLUMN `Closable`");
}
}