Add wso2bpel-ext code
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / wso2bpel-mgr / src / main / resources / migrations.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <databaseChangeLog
4         xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
5         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6         xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
7          http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
8
9     <changeSet id="1" author="codahale">
10         <createTable tableName="book">
11             <column name="id" type="bigint" autoIncrement="true">
12                 <constraints primaryKey="true" nullable="false"/>
13             </column>
14             <column name="name" type="varchar(255)">
15                 <constraints nullable="false"/>
16             </column>
17             <column name="type" type="varchar(255)"/>
18             <column name="price" type="NUMERIC(20,2)"/>
19         </createTable>
20     </changeSet>
21 </databaseChangeLog>