I consider to use Flyway with postgresql.
When a migration fails do I need to manually roll it back or does it work ootb with postgres?
Do following migrations continue to ran after a failed one?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Flyway uses PostgreSQL’s support for DDL transactions.
The migration is rolled back and the migration process stops.