I'm pondering how script ordering will work in DbUp.
Say I have the following scripts:
1.sql
2.sql
3.sql
and I want to insert a script between 1 and 2, which would naturally be 1.1.sql. What happens is that when running to a new database this will be run the 1.1 script before the 1 script.
Also, if I add 10.sql, this gets run before 1.sql, not at the end, which is what I would hope.
Any thoughts or guidance on this?
David