java-flyway-migrations

Installation
SKILL.md

Java Flyway Migrations

Creation Rule

Do not add database migrations unless they are explicitly needed by the requested change or explicitly requested by the user.

If a schema change is implied but not clearly required, ask before adding a migration.

Version Naming

When adding Flyway migrations, use timestamp-based versions.

Use names like:

V20260414_1829__foo_bar.sql

Do not use sequential versions like:

V1__foo_bar.sql

Installs
2
First Seen
Sep 8, 2026
java-flyway-migrations — pepperize/java-skills