How To Implement Automatic Database Updates By Integrating Liquibase

How To Implement Automatic Database Updates By Integrating Liquibase

After I talked about how to add Liquibase to your project and how to update your database together with your application code, it’s time to integrate Liquibase into your application so that you can execute the update automatically. Special thanks to Carlos Feria who asked for this post in a comment. The automatic execution of the…

Version-Based Database Migration with Liquibase – Update an Existing Database

Version-Based Database Migration with Liquibase – Update an Existing Database

I showed you in the previous post of this series, how you can use Liquibase to create a new database. That’s a required first step but it’s not the one that provides you the most benefits. And there are several other ways to do the same, like JPA’s feature to execute SQL scripts at startup….

Database Migration with Liquibase

Version-Based Database Migration with Liquibase – Getting Started

Creating the database for your application seems to be easy as long as you don’t need to support multiple versions or work in multiple teams. You just generate an SQL script from your database model or in the worst case, export the required statements from your test database. You can then execute it manually or…