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
With the newest version of migrations it will throw an error if you have a migration which looks like this
$this->table('some_table')->drop();
because it should have actually been
$this->table('some_table')->drop()->save();
Expected Behavior
The error should contain the migration file which caused the error so its easier to debug, not just what you can see bellow
Actual Behavior
Could not apply migrations for {"plugin":"AlfredStaffMembers","connection":"test"}
Migrations failed to apply with message:
Migration has pending actions after execution!