Update FAQ.md

This commit is contained in:
Matthias Kadenbach 2017-02-19 15:56:45 -08:00 committed by GitHub
parent e64b7cc233
commit 55f54251eb
1 changed files with 7 additions and 0 deletions

7
FAQ.md
View File

@ -58,3 +58,10 @@
#### Can I mix multiple sources during a batch of migrations?
No.
#### What does "dirty" database mean?
Before a migration runs, each database sets a dirty flag. Execution stops if a migration fails and the dirty state persists,
which prevents attempts to run more migrations on top of a failed migration. You need to manually fix the error
and then "force" the expected version.