forked from openmrs/openmrs-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquibase-demo-data-18x.xml
24 lines (19 loc) · 993 Bytes
/
liquibase-demo-data-18x.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.9
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
<changeSet id="20111202-1601-18x" author="standalone" dbms="mysql">
<comment>Adding demo</comment>
<sqlFile path="Demo-1.8.0.sql" encoding="UTF-8" />
<!-- due to a bug in the liquibase 1.9.x maven plugin we cannot use our custom
liquibase table name
-->
<dropTable tableName="DATABASECHANGELOG"/>
<renameTable newTableName="DATABASECHANGELOG" oldTableName="liquibasechangelog"/>
</changeSet>
<!-- The other liquibase-demo-data file adds in a few changes to the liquibase helper
tables for the liquibase 2.x releases. OpenMRS 1.8.x uses Liquibase 1.9.x, so
doesn't need those to run.
-->
</databaseChangeLog>