Enabling the Ratpack Liquibase module
Add ratpack Liquibase dependency to Gradle
compile "smartthings:ratpack-liquibase:0.1.0"
compile "org.liquibase:liquibase-core:3.5.1"
Add module binding to Ratpack main. Your usage may vary depending on your configuration strategy,
but it would look something like:
bindings.moduleConfig(LiquibaseModule.class,
configData.get("/liquibase",
LiquibaseModule.Config.class)
Add config properties to your project's .yml file, something like:
liquibase:
migrationFile: migrations.xml
autoMigrate: true
Finally create migrations.xml
with migrations. An empty migrations file is provided below.
See the Liquibase documentation
for more details on creating migrations.
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd">
</databaseChangeLog>