13 lines
621 B
XML
13 lines
621 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<databaseChangeLog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
|
|
|
|
<!-- Define default schema name used by changesets-->
|
|
<property name="schemaName" value="mam-contract"/>
|
|
|
|
<include file="prepare-database.sql" relativeToChangelogFile="true"/>
|
|
<include file="changesets/create-user-table.xml" relativeToChangelogFile="true"/>
|
|
</databaseChangeLog>
|