Hi.
I starting migration from tomcat, i have call method to update database with this:
Liquibase liquibase = null;
Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(connection));
liquibase = new Liquibase(“changelog-master.xml”, new FileSystemResourceAccessor(), database);
liquibase.update("");
But, i get this error:
liquibase.exception.ChangeLogParseException: changelog-master.xml does not exist
at java.lang.Thread.run(Thread.java:744)
How can I solve this?