FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Flyway vs Liquibase for PostgreSQL: An Honest Comparison
How-ToSystems

Flyway vs Liquibase for PostgreSQL: An Honest Comparison

via Dev.toMickel Samuel13h ago

Flyway and Liquibase are the two most widely used database migration tools in the Java ecosystem. Both support PostgreSQL. Both are mature. And both have significant differences in philosophy, syntax, and capabilities. This guide compares them honestly, including where each one falls short. Philosophy: Convention vs Configuration Flyway follows a convention-over-configuration approach. Migrations are plain SQL files with a naming convention ( V1__description.sql ). There is one way to do things, and it is simple. If you know SQL, you know Flyway. Liquibase takes a configuration-heavy approach. Migrations (called "changesets") can be written in XML, YAML, JSON, or SQL. Liquibase provides a database-agnostic abstraction layer with its own DSL for schema changes. This gives more flexibility at the cost of complexity. Migration Syntax Flyway: Plain SQL -- V2__add_users_email_index.sql -- Flyway migration: just SQL with a naming convention CREATE INDEX CONCURRENTLY idx_users_email ON users

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles

"Did You Mean…?" Building Fuzzy Suggestions using Postgres
How-To

"Did You Mean…?" Building Fuzzy Suggestions using Postgres

Medium Programming • 15h ago

How-To

Building a Quake PC

Lobsters • 16h ago

7 Simple Coding Tricks That Instantly Improved My Logic
How-To

7 Simple Coding Tricks That Instantly Improved My Logic

Medium Programming • 17h ago

RAG Showdown: Why Telling Your Agent Less Gets You More
How-To

RAG Showdown: Why Telling Your Agent Less Gets You More

Dev.to • 19h ago

The 2026 FBA Ads Playbook: How to Beat Fee Hikes with Dynamic Bidding
How-To

The 2026 FBA Ads Playbook: How to Beat Fee Hikes with Dynamic Bidding

Hackernoon • 20h ago

Discover More Articles