Fix menu names

This commit is contained in:
Thilina Pituwala
2020-05-31 07:07:38 +02:00
parent f87139ef41
commit dd9e904378
3 changed files with 25 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
<?php
$migrationList = [];
$migrationList[] = 'v20200530_270009_update_module_names';
$migrationList[] = 'v20200518_270011_add_al_language';
$migrationList[] = 'v20200429_270010_setting_groups';
$migrationList[] = 'v20200411_270009_email_log';

View File

@@ -0,0 +1,16 @@
<?php
namespace Classes\Migration;
class v20200530_270009_update_module_names extends AbstractMigration {
public function up(){
$sql = <<<'SQL'
Update Settings set value = '1' where name = 'System: Reset Module Names';
SQL;
return $this->executeQuery($sql);
}
public function down(){
return true;
}
}