Hello All,
I have successfully configured the Liquibase with MySQL & Spring boot Application.
When I tried to test the database I fired the crud queries on DB then also I can't see the changes in the tables which generated by Liquibase.
So please let me know what's was wrong?
My Configuration :
liquibase.properties
- diffChangeLogFile=src/main/resources/config/liquibase/liquibase-diff-changeLog.xml
- promtOnNonLocalDatabase=false
- driver=com.mysql.jdbc.Driver
- url=jdbc:mysql://localhost:3306/testDB
- username=***
- password=***
- referenceUrl=hibernate:spring:com.org.test.domain?dialect=org.hibernate.dialect.MySQLInnoDBDialect
- liquibase.change-log=classpath:config/liquibase/liquibase-changeLog.xml
- outputChangeLogFile=src/main/resources/config/liquibase/liquibase-outputChangeLog.xml
Thanks in advance