Handle out-of-order migrations with AllowMissing
mainBy default, goose will error if you attempt to apply missing (out-of-order) migrations.
- CLI: Use the
-allow-missingflag. - Library: Use the
goose.WithAllowMissing()functional option when callingUp,UpTo, orUpByOne.