Mods-for-HESK-Netsyms/install/migrations/v260/AddPrimaryKeyToSettings.php

15 lines
416 B
PHP
Raw Normal View History

2017-10-03 22:05:35 -04:00
<?php
namespace v260;
class AddPrimaryKeyToSettings extends \AbstractMigration {
function up($hesk_settings) {
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` ADD PRIMARY KEY (`Key`)");
}
function down($hesk_settings) {
2017-10-31 08:11:37 -04:00
$this->executeQuery("ALTER TABLE `" . hesk_dbEscape($hesk_settings['db_pfix']) . "settings` DROP PRIMARY KEY");
2017-10-03 22:05:35 -04:00
}
}