Mods-for-HESK-Netsyms/install/migrations/v160/InsertVersionRecord.php
2017-10-01 22:03:09 -04:00

15 lines
462 B
PHP

<?php
namespace v160;
class InsertVersionRecord extends \AbstractMigration {
function up($hesk_settings) {
$this->executeQuery("INSERT INTO `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` (`Key`, `Value`) VALUES ('modsForHeskVersion', '1.6.0')");
}
function down($hesk_settings) {
$this->executeQuery("DELETE FROM `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` WHERE `Key` = 'modsForHeskVersion'");
}
}