Skip to content
Snippets Groups Projects
Commit 9dc18cc7 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #3821

Closes #3821

Merge request !2685
parent 19d6305c
No related branches found
No related tags found
1 merge request!2685fixes #3821
Pipeline #21017 passed
<?php
final class ResetMyCoursesFilter2 extends Migration
{
public function description()
{
return 'Cleanup user-config again';
}
public function up()
{
$query = "UPDATE `config_values`
SET `value` = ''
WHERE `value` = 'all'
AND `field` = 'MY_COURSES_SELECTED_STGTEIL'";
DBManager::get()->exec($query);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment