We would like to setup flyway repeatable scripts as follows
R__schema123.sql
R__table123.sql
Does flyway know to run the schema script before the table script?
2 comments
Hello Michael,
Repeatable scripts are executed alphabetically based on their description, so you can ensure their exact order.
Perfect thank you.
Please sign in to leave a comment.
We would like to setup flyway repeatable scripts as follows
R__schema123.sql
R__table123.sql
Does flyway know to run the schema script before the table script?