Sergey
Sergey

Reputation: 133

How can I merge multiple files into a single flyway migration?

I have two sql file

/migrations
    v1.0.0__geo-areas-tables.sql
    v1.0.0__geo-areas-data.sql

These files are the same version of the migration. How can I apply them within the limits of migration 1.0.0?

P.s. I do not want to use additional scripts combine these files into one.

Upvotes: 1

Views: 3131

Answers (1)

Axel Fontaine
Axel Fontaine

Reputation: 35169

The rule is simple: one version = one script.

In your case you probably want to name them v1.0.0.0__geo-areas-tables.sql and v1.0.0.1__geo-areas-data.sql as that is the order you want to guarantee anyway.

Upvotes: 4

Related Questions