Reputation: 21
I have a basic Rest program in which I'm using Liquibase. Was about to run it and this appears on the run:
Not pretty sure on what to do to solve it
Upvotes: 0
Views: 432
Reputation: 65
Assuming this is a spring boot application, the default path for liquibase change log file can be overriden in application.yml file, following is one such example -
spring: liquibase: change-log: classpath:/liquibase/changelog-master.xml
Upvotes: 2