Hi,
I need update my database with new changesets of one especific context. When a run my code, the liquibase runs normally, but the table is not created. Nothing error is showed, so it is very difficult to understand the problem. What do I doing wrong?
My code is:
- Connection connection = // my connection
- Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(connection));
- Liquibase liquibase = new Liquibase("config/liquibase/master.xml", new ClassLoaderResourceAccessor(), database);
- liquibase.update( "TEST" );
Like a said, the liquibase runs but don't create my table from xml. I am using 3.4.1 for liquibase and java 8.