MyBatis migrations splits each SQL file into two sections:

  1. One for migrating forward one version
  2. One for migrating back one version

How does one roll back versions using Flyway?

link|improve this question

doh, i hoped for smth like: how to rick roll :) – bestsss Feb 10 '11 at 16:43
feedback

1 Answer

up vote 4 down vote accepted

Found the answer in the FAQ

link|improve this answer
1  
Your best option is of course to use a database that properly supports DDL transactions, such as PostgreSQL. That way, the database will take care of cleaning up the mess for you. – Axel Fontaine Feb 10 '11 at 20:47
You misunderstood the point of my question. I'm not saying I'd like to roll-back in the middle of a transaction in case of a failure. I'm saying a customer has version 4 of the database and I want to roll him back to version 2. – Gili Feb 12 '11 at 17:56
What would be the real life usecase where one would like to roll back multiple successful migrations on a production system? – Axel Fontaine Feb 13 '11 at 13:37
I was thinking of rolling back a developer database to an older version a customer has. Though obviously using a backup/restore is a better approach (assuming the DB isn't too large). – Gili Feb 14 '11 at 3:57
Another usecase would be to rollback the (life)system when a new feature makes trouble – Karussell Feb 19 at 21:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.