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

database.change_sets.stored_object.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-stored_object" author="Bernat Bonda">
        <preConditions onFail="MARK_RAN">
            <not>
                <tableExists tableName="stored_object"/>
            </not>
        </preConditions>

        <createTable tableName="stored_object">
            <column name="stored_object_key" type="varchar(255)"/>
            <column name="stored_object_value" type="text"/>
        </createTable>
    </changeSet>
</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy