You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/install/migrations/v201/UpdateVersion.php

15 lines
269 B
PHP

<?php
namespace v201;
class UpdateVersion extends \AbstractMigration {
function up($hesk_settings) {
$this->updateVersion('2.0.1', $hesk_settings);
}
function down($hesk_settings) {
$this->updateVersion('2.0.0', $hesk_settings);
}
}