-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathliquibase.xml
More file actions
40 lines (33 loc) · 1.37 KB
/
liquibase.xml
File metadata and controls
40 lines (33 loc) · 1.37 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!--
See http://wiki.openmrs.org/display/docs/Module+liquibase+File for
documentation on this file.
See http://www.liquibase.org/manual/home#available_database_refactorings
for a list of supported elements and attributes
-->
<!-- Uncomment this and edit the values below to use this file
<changeSet id="mymoduleid-2010-05-25-15:50" author="bwolfe">
<preConditions onFail="MARK_RAN">
<not><tableExists tableName="mymoduleid_myobject"/></not>
</preConditions>
<comment>
Creating the mymoduleid_myobject table
</comment>
<createTable tableName="mymoduleid_myobject">
<column name="mymoduleid_myobject_id" type="int">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="firstname" type="varchar(255)"/>
<column name="lastname" type="varchar(255)"/>
<column name="username" type="varchar(255)">
<constraints unique="true" nullable="false"/>
</column>
<column name="testid" type="int" />
</createTable>
</changeSet>
-->
</databaseChangeLog>