diff --git a/db/migrations/6.0.30_remove_obsolete_release_notes_config.php b/db/migrations/6.0.30_remove_obsolete_release_notes_config.php new file mode 100644 index 0000000000000000000000000000000000000000..caf6d03b3a4157b309daec750ccbd54db33aa8c9 --- /dev/null +++ b/db/migrations/6.0.30_remove_obsolete_release_notes_config.php @@ -0,0 +1,18 @@ +<?php + +final class RemoveObsoleteReleaseNotesConfig extends Migration +{ + public function description() + { + return 'removes the obsolete global config entry SHOW_RELEASE_NOTES'; + } + + public function up() + { + DBManager::get()->exec("DELETE `config`, `config_values` + FROM `config` + LEFT JOIN `config_values` USING (`field`) + WHERE `field` = 'SHOW_RELEASE_NOTES'"); + } + +}