Skip to content

Tag: liquibase

How to solve Error when save Entity with List

I have next Entity(List was added with last update): And liquibase update: Well, when I try to save entity I get rg.postgresql.util.PSQLException: ERROR: relation “settings_bank” does not exist. I connect to DB by pgAdmin and- table was created.. List bankIds- just Long, its not connect to another…

Make column non-nullable in liquibase script

In my liquibase script I made a mistake in the first change set, one of the columns (OWNER) in my Primary Key is nullable as I forgot to set nullable to false for it, as shown below when I mvn clean install my springboot app, I get the below error: I tried adding below chnageset but it doesn’t work and

Liquibase use a changelog outside of my jar file

I developed an app that uses Liquibase and built a jar file. I was wondering if it is possible to use a changelog file that is outside of the jar file , like for example: I know that Liquibase removed the option to use an absolute path , so is there any other way to achieve this? Answer Found an