Top "Liquibase" questions

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

Adding a non-nullable column to existing table fails. Is the "value" attribute being ignored?

Background: we have a Grails 1.3.7 app and are using Liquibase to manage our database migrations. I am trying to add …

sql postgresql grails database-design liquibase
Spring Boot: How to setup test data with liquibase in unit test

I'm trying to setup the database schema and some test data with liquibase for some tests. Each test has a …

java spring spring-boot liquibase
Liquibase - insert rows with uuid

I have two tables declared as follows: <changeSet author="istvan" id="country-table-changelog"> <createTable tableName="country"> <…

sql liquibase
How to configure liquibase not to include file path or name for calculating checksum?

I found that liquibase uses the full path of the change log file to calculate the checksum. This behavior restricts …

liquibase
Liquibase changeSet with failOnError="false" are always ran?

I'm trying to execute the following changeSet in liquibase which should create an index. If the index doesn't exist, it …

sql database-schema database-migration liquibase
Hibernate using JPA (annotated Entities) and liquibase

liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA …

java hibernate jpa liquibase
Liquibase generate changelog from JPA entities

I have a Spring boot, spring data jpa project with a parent and three children modules. One of my modules …

spring-boot spring-data liquibase liquibase-hibernate
Using liquibase file paths via both maven and spring

I update scheme and initial data in spring context using the following beean: <bean id="liquibase" class="liquibase.integration.…

java spring maven liquibase
enum data type for liquibase

I'm currently working on a liquibase.xml file to create table table_a. One of my fields is <column …

postgresql liquibase liquid-layout
How to set up liquibase in Spring for multiple data sources?

I need to set up liquibase for two datasources in Spring, at the moment it seems that only one liquibase …

spring spring-boot spring-data liquibase