-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathliquibase-demo-data.xml
25 lines (21 loc) · 1.22 KB
/
liquibase-demo-data.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
25
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<changeSet id="20111202-1601" author="standalone" dbms="mysql">
<comment>Adding demo data and updating the 'liquibasechangelog' table to work with version 2.0.x</comment>
<sqlFile path="Demo-1.9.0.sql" encoding="UTF-8" />
<!--
We need to make the liquibasechangelog table modifications to 2.0.x within this changeset because
the one in demo data was created with version 1.9.x, so that liquibase doesn't fail when entering
this changeset into table because of the missing columns that are required.
See http://www.liquibase.org/download for more details.
-->
<ext:modifyColumn tableName="liquibasechangelog">
<column name="MD5SUM" type="varchar(35)" />
</ext:modifyColumn>
</changeSet>
</databaseChangeLog>