database.change_sets.item.xml Maven / Gradle / Ivy
<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-3.4.xsd"> <changeSet id="create-table-item" author="Bernat Bonda"> <preConditions onFail="MARK_RAN"> <not> <tableExists tableName="item"/> </not> </preConditions> <createTable tableName="item"> <column name="item_id" type="uuid"/> </createTable> </changeSet> </databaseChangeLog>