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

15 lines
517 B
PHP

<?php
namespace v160;
class AddCanChangeNotificationSettingsPermission extends \AbstractMigration {
function up($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "users` ADD COLUMN `can_change_notification_settings` ENUM('0', '1') NOT NULL DEFAULT '1'");
}
function down($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "users` DROP COLUMN `can_change_notification_settings`");
}
}