blob: 9824e6b7e0b88e1dc73094ceccf7cd975796b3e3 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet id="1" author="test">
<comment>
Initial tables
</comment>
<createTable tableName="test">
<column name="id" type="varchar(60)">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="foo" type="varchar(15)">
<constraints nullable="false"/>
</column>
</createTable>
</changeSet>
</databaseChangeLog>