How to configure project liquibase change log file

With DataServices 36.0.0, how can I configure the liquibase change log that use my project change log file?
In my project, I have configured to point to my project file :

#Liquibase
spring.liquibase.change-log=classpath:/database/db.changelog-root.xml

But it doesn’t work as expected. When I debugging it always point to the default A12 change log file: classpath:/database/project_model.xml

After change it to: spring.datasources.dataservices.liquibase=classpath:/database/db.changelog-root.xml
I still have same problem.

Hi @nguyen-sharp-drift,
Could you please check if

spring.datasources.dataservices.liquibase.enabled=true
spring.datasources.dataservices.liquibase.change-log=your-path

Thank you, now it works.