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

14 lines
296 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) {
}
}