Mods-for-HESK-Netsyms/install/migrations/v260/AddCalendarModule/InsertDefaultCalendarViewSetting.php

15 lines
499 B
PHP
Raw Normal View History

2017-10-31 08:11:37 -04:00
<?php
namespace v260\AddCalendarModule;
class InsertDefaultCalendarViewSetting extends \AbstractMigration {
function up($hesk_settings) {
$this->executeQuery("INSERT INTO `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` (`Key`, `Value`) VALUES ('default_calendar_view', 'month')");
}
function down($hesk_settings) {
$this->executeQuery("DELETE FROM `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` WHERE `Key` = 'default_calendar_view'");
}
}