Liquibase command-line issues with Spring Boot fat jar
I’m trying to use the liquibase command-line to generate SQL to send to our DBAs.
springboot3 app is unable to find liquibase changelog file
I am using Springboot3 with liquibase. Spring is unable to find the changelog file, however it is present and the path is configured correctly
Does Liquibase within Spring Boot consider persistence query timeout
In our Spring Boot 3 project we want to use the following property to limit SQL query runtime to 2 mins:
Overriding escapeObjectName method from liquibase.database.core.PostgresDatabase. in Springboot
I am porting an old project that uses Liquibase to Spring Boot. The old project overrides the escapeObjectName method from the liquibase.database.core.PostgresDatabase class in order to return the object names unquoted. The reason for this is that we work with Postgres, and all names must be in lowercase.