15 lines
475 B
PHP
Raw Normal View History

2017-10-01 22:03:09 -04:00
<?php
namespace v200\RemoveEditInfoFromNotes;
2017-10-01 22:03:09 -04:00
class DropNumberOfEditsColumn extends \AbstractMigration {
2017-10-01 22:03:09 -04:00
function up($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "notes` DROP COLUMN `number_of_edits`");
2017-10-01 22:03:09 -04:00
}
function down($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "notes` ADD COLUMN `number_of_edits` INT NOT NULL DEFAULT 0");
2017-10-01 22:03:09 -04:00
}
}