diff --git a/CHANGELOG.md b/CHANGELOG.md index df67b68..c61b3ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.3 - 2024-03-04 + +### Fixed +- Fix order of operations when uninstalling the plugin. + ## 1.0.2 - 2023-12-08 ### Added diff --git a/src/migrations/Install.php b/src/migrations/Install.php index 42de060..3735c41 100644 --- a/src/migrations/Install.php +++ b/src/migrations/Install.php @@ -18,9 +18,9 @@ public function safeUp(): bool public function safeDown(): bool { + $this->dropProjectConfig(); $this->dropForeignKeys(); $this->removeTables(); - $this->dropProjectConfig(); return true; }