diff --git a/core/migrations/v20210606_290001_update_s3_config.php b/core/migrations/v20210606_290001_update_s3_config.php new file mode 100644 index 00000000..eba8e8c1 --- /dev/null +++ b/core/migrations/v20210606_290001_update_s3_config.php @@ -0,0 +1,31 @@ +executeQuery($sql); + + $sql = <<<'SQL' +UPDATE `Settings` + SET category = 'System' +WHERE name like 'Files:%'; +SQL; + + return $this->executeQuery($sql); + } + + public function down() + { + return true; + } +}