You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return'Fixes the setting "course.course_category_code_to_use_as_model" by setting it to NULL if it was set to "false".';
18
+
}
19
+
20
+
publicfunctionup(Schema$schema): void
21
+
{
22
+
$this->addSql("UPDATE settings SET selected_value = NULL WHERE selected_value = 'false' AND variable = 'course_category_code_to_use_as_model' AND category = 'course'");
23
+
}
24
+
25
+
publicfunctiondown(Schema$schema): void
26
+
{
27
+
// Intentionally left empty (non-destructive migration).
0 commit comments