Top "Liquibase" questions

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

Update type of a column in liquibase

I want to update the type of a column named "password". At the moment it has type NVARCHAR(40) and I …

liquibase changeset
Liquibase - disable checksum?

How can I disable checksum validation in Liquibase? It looks like Liquibase does not provide such feature. Would it be …

liquibase
How to get liquibase to log using slf4j?

A lot of people are unsure how to fix logging for liquibase, either to the console or file. Is it …

java logging log4j slf4j liquibase
H2: how to set default schema and database?

I am using Liquibase for my database updates and testing it against H2. I am using Spring to configure the …

database spring h2 liquibase
is it possible to update an existing row in DB, using liquibase?

Tried to find an answer to this question, but couldn't. So, for example I have this table: TABLE: col1 | col2 123 0 124 1 …

oracle database liquibase
Setting up Liquibase with MS-SQL Server

I am utilising Liquibase (www.liquibase.org) into our MVC3 SQL Server 2008 project to manage database migration/changes. However I'm …

sql-server-2008 jdbc liquibase legacy legacy-database
JHipster and database connection

I'm using JHipster and when I run sudo mvn liquibase:diff I get the below error [INFO] Settings ---------------------------- [INFO] …

maven jhipster liquibase
How to build a WHERE-clause in a LiquiBase changeset

How do I have to define a changeset in 'LiquiBase' notation for updating a table column whith an AND-ed WHERE-clause: &…

where-clause liquibase changeset
How to add new column with default value from existing column in Liquibase

I'm using Postgres DB and for migration I'm using Liquibase. I have an ORDERS table with the following columns: ID | …

java postgresql migration liquibase
using spring boot profiles with liquibase changeset context attribute to manage changset scope

I am trying to do a proof of concept application with spring boot and liquibase. I basically want to create …

postgresql spring-boot liquibase liquibase-hibernate