Skip to content

Commit

Permalink
Merge pull request #268 from MasoniteFramework/hotfix-migration-issue
Browse files Browse the repository at this point in the history
fixed exception in migration command
  • Loading branch information
josephmancuso committed Sep 1, 2018
2 parents 6758efc + 9baa3ce commit 3fa78a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions masonite/commands/MigrateResetCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def handle(self):
migrator.reset(migration_directory)
except QueryException as e:
raise e
except FileNotFoundError:
pass

if migrator.get_notes():
notes += migrator.get_notes()
Expand Down

0 comments on commit 3fa78a8

Please sign in to comment.