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
Liquibase in Spring Boot – Developer's Guide
How-ToSystems

Liquibase in Spring Boot – Developer's Guide

via Dev.to TutorialMarcin Parśniak3w ago

Liquibase in Spring Boot – Developer's Guide Managing database schema changes can seem simple at first… until it isn’t. A quick ALTER TABLE here and there might work with one developer, but once you have multiple environments—dev, staging, prod—things get messy fast. This is where Liquibase comes in. In this guide, I’ll walk you through: What Liquibase is and why it matters Setting it up in Spring Boot Writing migrations safely Managing different environments What is Liquibase? Liquibase is essentially Git for your database schema . Instead of running SQL scripts manually and hoping everyone runs them correctly, you define changes in a structured format and Liquibase tracks which ones have been applied. Example XML changeset: <changeSet id= "add-phone-number" author= "dev" > <addColumn tableName= "users" > <column name= "phone_number" type= "varchar(20)" /> </addColumn> </changeSet> Liquibase keeps track of applied migrations in a table called DATABASECHANGELOG , ensuring: Changes are

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
19 views

Related Articles

What You Need to Know About Building an Outdoor Sauna (2026)
How-To

What You Need to Know About Building an Outdoor Sauna (2026)

Wired • 15h ago

The Boring Skills That Make Developers Unstoppable in 2026
How-To

The Boring Skills That Make Developers Unstoppable in 2026

Medium Programming • 20h ago

I Installed This VS Code Extension… and My Code Got Instantly Better
How-To

I Installed This VS Code Extension… and My Code Got Instantly Better

Medium Programming • 21h ago

The Age of Personalized Software
How-To

The Age of Personalized Software

Medium Programming • 23h ago

Automating Checkout Add-On Recommendations in WordPress for WooCommerce
How-To

Automating Checkout Add-On Recommendations in WordPress for WooCommerce

Dev.to • 23h ago

Discover More Articles