Top "Liquibase" questions

Liquibase is an open source, database-independent library for tracking, managing and applying database changes.

altering my sql table to add multiple new columns at once using liquibase

What is the correct syntax to alter the table and adding multiple columns at a time using liquibase xml. The …

liquibase
Liquibase - generate script without applying changesets to database

In my current project, there's a DB team that checks all the scripts before applying them to production. We are …

maven maven-plugin liquibase
liquibase: can you specify "after column" with liquibase addColumn?

Is there a way to write a liquibase addColumn changeset so it generates sql like ALTER TABLE xxx ADD COLUMN …

mysql database-migration liquibase changeset
how to insert html tag inside sql in Liquibase migration?

I need to update my data that have html tag inside so wrote this on liquibase <sql> update …

database grails migration liquibase
How to setup latest version of liquibase through bash script?

I used to install liquibase older version e.g `wget https://github.com/downloads/liquibase/liquibase/liquibase-2.0.5-bin.tar.gz` …

bash github liquibase sourceforge
liquibase - execution order of changesets

As far as I understand, Liquibase execute the changesets according to the order they are written in the change log. …

execution liquibase changeset
Liquibase not working with mysql autoincrement

I try to create a new table via a liquibase changeset that looks like: <createTable tableName="mytable"> <…

mysql liquibase
liquibase using maven with two databases does not work

This post describes how to update two databases from maven using liquibase: liquibase using maven with two databases However, when …

maven multiple-databases liquibase
Liquibase preconditions: How do I check for a column being non-nullable?

I have a db upgrade script to remove the non-null constraint on a column. I want to do a precondition …

mysql liquibase preconditions