Top "Liquibase" questions

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

How to delete an index in Grails with Liquibase

I have a table generated by GORM (Grails Domain). It has foreign key / index that generated random characters like FKAC7…

database grails migration gorm liquibase
Adding composite unique constraint in Liquibase

I'm creating a link table which has 3 columns; id, product_id, tournament_id. Adding a uniqueConstraint to the "id" column …

liquibase unique-constraint
Java code changeset in liquibase

Is there a way in liquibase to create java code change set (i.e. provide a java class, which will …

java jdbc liquibase flyway
Loading data from properties file to be used by Liquibase in Maven build

I can run Liquibase changelog through maven build (liquibase:update goal) without any problems. Now I'd like Liquibase to use …

java maven liquibase
Inserting lots of values (with FK's) into database using LiquiBase and Spring

I'm trying to add a lot of records (currently located in an Excel file) into my DB using Liquibase (so …

java sql database spring liquibase
Cannot find database driver: org.postgresql.Driver

Im trying to change a project a bit, by upgrading it with Liquibase. Its a Java EE project. So im …

postgresql maven liquibase
configure dataSource for liquibase in spring boot

I have a spring boot application and I want to add liquibase configuration change log for it. I have created …

spring-boot liquibase applicationcontext
Can you clear liquibase checksums for a given file only?

Running liquibase --url=jdbc:oracle:thin:@localhost:1521/XE -- driver=oracle.jdbc.OracleDriver --changeLogFile=db.changelog-next.xml -- username=owner …

liquibase
Flyway and liquibase together?

I've looked at both Liquibase and Flyway individually and on an individual comparison alone, Liquibase seems like the better tool …

compare database-migration liquibase flyway
Liquibase - list of available generic datatypes

I need a list of the generic data types available in Liquibase. Where can I find these in the documentation. …

liquibase