24 lines
822 B
XML
24 lines
822 B
XML
<?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">
|
|
|
|
<!--
|
|
<changeSet id="2011-03-01-16-30-00" author="bob">
|
|
<createTable tableName="department">
|
|
<column name="id" type="int">
|
|
<constraints primaryKey="true" nullable="false"/>
|
|
</column>
|
|
<column name="name" type="varchar(50)">
|
|
<constraints nullable="false"/>
|
|
</column>
|
|
<column name="active" type="boolean" defaultValueBoolean="true"/>
|
|
</createTable>
|
|
</changeSet>
|
|
-->
|
|
|
|
</databaseChangeLog>
|