diff --git a/db/migrations/5.2.9_add_template_to_log_action.php b/db/migrations/5.2.9_add_template_to_log_action.php new file mode 100644 index 0000000000000000000000000000000000000000..639970e8a88c2414315a1b181eb3afdf4718f035 --- /dev/null +++ b/db/migrations/5.2.9_add_template_to_log_action.php @@ -0,0 +1,17 @@ +<?php + +class AddTemplateToLogAction extends Migration +{ + public function description() + { + return 'Adds missing template to info_template'; + } + public function up() + { + DBManager::get()->exec("UPDATE `log_actions` SET `info_template` = '%user ändert Berechtigung von %res(%affected): %info' WHERE `name` = 'RES_PERM_CHANGE'"); + } + + public function down() + { + } +} \ No newline at end of file