Skip to content

Commit

Permalink
Fix order of operations when uninstalling the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Feb 5, 2024
1 parent 92455c9 commit 77b378d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public function safeUp(): bool

public function safeDown(): bool
{
$this->dropProjectConfig();
$this->dropForeignKeys();
$this->dropTables();
$this->dropProjectConfig();

return true;
}
Expand Down

0 comments on commit 77b378d

Please sign in to comment.