It would be great if flamingock could support baseline migrations, or something similar.
The flyway docs explain the concept of baseline migrations more clearly than I ever could:
Over the lifetime of a project, many database objects may be created and destroyed across many migrations which leaves behind a lengthy history of migrations that need to be applied in order to bring a new environment up to speed.
Instead, you might wish to add a single, cumulative migration that represents the state of your database after all of those migrations have been applied without disrupting existing environments.
Flyway gives you a way to achieve this using Baseline Migrations.
[...]
It would be great if flamingock could support baseline migrations, or something similar.
The flyway docs explain the concept of baseline migrations more clearly than I ever could: