Flyway: Database migration tool for schema versioning
Version-controlled SQL migrations with automated execution tracking.
Learn more about Flyway
Flyway is a Java-based database migration framework that automates schema versioning and deployment. It works by reading migration files from a specified location, tracking applied migrations in a metadata table, and executing pending migrations in order. The tool supports multiple databases including PostgreSQL, MySQL, Oracle, SQL Server, and others, and integrates with build tools like Maven and Gradle. Common deployment contexts include continuous integration pipelines, containerized environments, and multi-instance database management scenarios.

Broad database support
Supports 30+ database systems including cloud platforms like Aurora, Azure Synapse, Snowflake, and BigQuery, as well as traditional databases like Oracle, DB2, and SQL Server.
Build tool integration
Provides native plugins for Maven and Gradle, with additional community support for Ant, SBT, Spring Boot, and other build systems.
Version tracking mechanism
Maintains a metadata table in the target database to record applied migrations, enabling detection of pending changes and prevention of duplicate execution.
import org.flywaydb.core.Flyway;
Flyway flyway = Flyway.configure()
.dataSource("jdbc:postgresql://localhost:5432/mydb", "user", "password")
.load();
// Execute pending migrations
flyway.migrate();Top in Data Engineering
Related Repositories
Discover similar tools and frameworks used by developers
pandas
Labeled data structures for tabular data analysis.
Luigi
Build complex batch pipelines with dependency management.
Patroni
Automates PostgreSQL failover using distributed consensus systems.
Apache Superset
Flask-based BI platform for SQL database visualization.
dbt
SQL-based transformation framework for analytics data warehouses.
Related Reading
Guides and comparisons from the Greptile content library
How to ACTUALLY Think About Code Reviews: The 3-Layer Checklist
A code review checklist and best practices organized around three layers — Mechanical, Structural, and Narrative — that help any team improve code quality without slowing reviews down.
What is agentic coding? Benefits, risks, and best tools to consider
What engineering leaders need to know about agentic coding: how it differs from AI coding and vibe coding, how it works, the benefits and risks, and the tools worth evaluating.
The 7 Best AI Coding Tools for Complex Codebases
The best AI coding tools for complex codebases, ranked on accuracy, suggestion quality, and full-codebase context. See which ones you can actually trust.
Best Developer Productivity Tools in 2026
The best developer productivity tools in 2026, compared by the workflow problem they solve: code review, autocomplete, AI-native editing, terminal agents, code search, observability, and security.