I am looking for a way to execute a hook script before and after migration. I have a bunch of views & stored procedure (sp) and would like the process to be

1) drop all views & sp 2) run migration 3) rebuild views & sp

This insures that any change to the schema is reflected in related views & sp. steps 1) and 3) are basically bash scripts

Is this possible using Flyway ?

Thanks

link|improve this question
feedback

1 Answer

The short answer is: no, not at this point.

Here is the reason: I thought about this as well as I was laying down the initial design for Flyway. The more I thought about this aspect though, the more it became clear to me that these pre and post scripts are also an integral part of the migration, or at least something a migration can not do without if it wants to be successful. Therefore I would recommend to either:

  • Merge 1, 2 & 3 in a single migration
  • Have 3 separate migrations x.1 (drop views), x.2 (actual migration), x.3 (rebuild views)

You might even be able to have x.1 and x.3 call stored procedures that do the work for you to avoid code duplication between migrations if these steps are repeating.

Having Flyway take care of performing all changes to the database structure makes the whole thing more straightforward, avoiding a mix of different technologies.

link|improve this answer
I was hoping to have this built in and controlled by Flyway configuration. Basically have a pre, migrate, and post directory structure with Flyway executing whatever is in pre then execute the stuff in migrate followed by the post stuff. I'm still very new at Flyway so I may find out my comment is rubbish. – JustBob Mar 14 at 20:58
feedback

Your Answer

 
or
required, but never shown

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