All Downloads are FREE. Search and download functionalities are using the official Maven repository.

database.change_sets.label.xml Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
<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-label" author="Bernat Bonda">
        <preConditions onFail="MARK_RAN">
            <not>
                <tableExists tableName="label"/>
            </not>
        </preConditions>

        <createTable tableName="label">
            <column name="label_id" type="uuid"/>
            <column name="label_value" type="text"/>
        </createTable>
    </changeSet>

</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy