liquibase

Analyzing data.

Liquibase: Database change management

Reading Time: 3 minutes Liquibase is one of the most protean tools for database migration. It operates on almost all SQL database outlets. So whether you use MySQL, SQL Garçon, Oracle, Firebird, or a combination of these or any other common database platforms, it’s got you covered. It also runs in any CI/ CD channel so long as you can run Java, install the connectors, and connect to your databases. This Continue Reading

Digital business and technology

Database Versioning with Spring Boot and Liquibase

Reading Time: 3 minutes What is Liquibase Liquibase is an open-source database-independent library for tracking, managing, and applying database schema changes. Basically, it works with various types of databases and supports various file formats for defining the database structure. The feature that is probably most useful in Liquibase is its ability to roll changes back and forward from a specific point and save you from needing to know what was the last Continue Reading

Man working at night coding and pointing on a screen with a pen

Introduction to Liquibase

Reading Time: 2 minutes Overview Liquibase allows you to specify desired database changes using SQL and several other database-independent formats such as XML, YAML, and JSON. Developers can abstract database code to make the propagation of changes to different database types much more accessible. Before you start, If you don’t have a Liquibase account, create your Liquibase Hub account first. Download and extract Liquibase Download Liquibase. Run the installer or extract the downloaded files. Open a terminal to view your new directory: Configure Continue Reading

Getting started with Liquibase

Reading Time: 3 minutes Introduction Liquibase is an open-source tool. It is used for tracking, managing, and applying database schema changes. It works across different types of databases and supports various file formats for defining the database structure. The feature that is most attractive in Liquibase is its ability to roll changes back and forward from a specific point. In any application, if you change any tables for any requirements and if Continue Reading

How to integrate Liquibase into your application

Reading Time: 4 minutes Introduction Hi everyone! Today we’ll be discussing about how you can integrate Liquibase into your application so that it automatically updates your database. That is especially interesting when you build smaller applications that don’t run in a highly regulated enterprise environment. In these situations, it’s often not possible to run the update process yourself. And there might be no operations team which executes the SQL Continue Reading

black and gray laptop computer turned on doing computer codes

Liquibase : Getting started with Version Based Database Migration

Reading Time: 6 minutes Hi everyone, today in this blog we are going to talk about version-based database migration With Liquibase. Introduction Creating the database for your application seems to be easy. As long as you don’t need to support multiple versions or work in a huge team. You just generate an SQL script from your database model. Or in the worst case, export the required statements from your Continue Reading