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

pluginmodelom.liquibase.tableObservingProcedures.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.1" 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-3.1.xsd">
    <!--
     Copyright (C) 2024 Fraunhofer Institut IOSB, Fraunhoferstr. 1, D 76131
     Karlsruhe, Germany.

     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU Lesser General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.

     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU Lesser General Public License for more details.

     You should have received a copy of the GNU Lesser General Public License
     along with this program.  If not, see <http://www.gnu.org/licenses/>.
    -->

    <changeSet author="generated" id="2024-06-01-observing_procedures-1" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
        <preConditions onFail="MARK_RAN">
            <changeLogPropertyDefined property="id-ObservingProcedure" value="LONG" />
            <not>
                <tableExists tableName="observing_procedures" />
            </not>
        </preConditions>
        <createTable tableName="observing_procedures">
            <column name="id" type="${idTypeLong}" autoIncrement="true">
                <constraints primaryKey="true" primaryKeyName="pk_observing_procedures" />
            </column>
        </createTable>
    </changeSet>

    <changeSet author="generated" id="2024-06-01-observing_procedures-2" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
        <preConditions onFail="MARK_RAN">
            <or>
                <changeLogPropertyDefined property="id-ObservingProcedure" value="STRING" />
                <changeLogPropertyDefined property="id-ObservingProcedure" value="UUID" />
            </or>
            <not>
                <tableExists tableName="observing_procedures" />
            </not>
        </preConditions>
        <createTable tableName="observing_procedures">
            <column name="id" type="${idType-ObservingProcedure}" defaultValueComputed="${defaultValueComputed-ObservingProcedure}">
                <constraints primaryKey="true" primaryKeyName="pk_observing_procedures"/>
            </column>
        </createTable>
    </changeSet>

    <changeSet author="generated" id="2024-06-01-observing_procedures-3" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
        <preConditions onFail="MARK_RAN">
            <not>
                <columnExists columnName="name" tableName="observing_procedures" />
            </not>
        </preConditions>
        <addColumn tableName="observing_procedures">
            <column name="name" type="TEXT"/>
            <column name="description" type="TEXT"/>
            <column name="definition" type="TEXT"/>
            <column name="properties" type="JSONB"/>
        </addColumn>
    </changeSet>

    <changeSet author="generated" id="2024-06-01-datastreams-3" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
        <preConditions onFail="MARK_RAN">
            <not>
                <columnExists columnName="observing_procedure_id" tableName="datastreams" />
            </not>
        </preConditions>
        <addColumn tableName="datastreams">
            <column name="observing_procedure_id" type="${idType-ObservingProcedure}"/>
        </addColumn>
    </changeSet>

    <changeSet author="generated" id="2024-06-01-datastreams-idx-observing_procedure_id" objectQuotingStrategy="QUOTE_ALL_OBJECTS">
        <preConditions onFail="MARK_RAN">
            <not>
                <indexExists tableName="datastreams" indexName="datastreams_observing_procedure_id" />
            </not>
        </preConditions>
        <createIndex tableName="datastreams" indexName="datastreams_observing_procedure_id">
            <column name="observing_procedure_id" />
        </createIndex>
    </changeSet>

</databaseChangeLog>





© 2015 - 2024 Weber Informatics LLC | Privacy Policy