pluginmodelsampling.liquibase.tablePreparationSteps.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FROST-Server.Plugin.ModelSampling Show documentation
Show all versions of FROST-Server.Plugin.ModelSampling Show documentation
The SensorThings API Version 2.0 Sampling Data Model.
<?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-preparation_steps-1" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <changeLogPropertyDefined property="id-PreparationStep" value="LONG" /> <not> <tableExists tableName="preparation_steps" /> </not> </preConditions> <createTable tableName="preparation_steps"> <column name="id" type="${idTypeLong}" autoIncrement="true"> <constraints primaryKey="true" primaryKeyName="pk_preparation_steps" /> </column> </createTable> </changeSet> <changeSet author="generated" id="2024-06-01-preparation_steps-2" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <or> <changeLogPropertyDefined property="id-PreparationStep" value="STRING" /> <changeLogPropertyDefined property="id-PreparationStep" value="UUID" /> </or> <not> <tableExists tableName="preparation_steps" /> </not> </preConditions> <createTable tableName="preparation_steps"> <column name="id" type="${idType-PreparationStep}" defaultValueComputed="${defaultValueComputed-PreparationStep}"> <constraints primaryKey="true" primaryKeyName="pk_preparation_steps"/> </column> </createTable> </changeSet> <changeSet author="generated" id="2024-06-01-preparation_steps-3" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <not> <columnExists columnName="name" tableName="preparation_steps" /> </not> </preConditions> <addColumn tableName="preparation_steps"> <column name="feature_id" type="${idType-Feature}"> <constraints nullable="false"/> </column> <column name="preparation_procedure_id" type="${idType-PreparationProcedure}"> <constraints nullable="false"/> </column> <column name="name" type="TEXT"/> <column name="description" type="TEXT"/> <column name="definition" type="TEXT"/> <column name="properties" type="JSONB"/> <column name="time" type="TIMESTAMP WITH TIME ZONE"/> </addColumn> </changeSet> <changeSet author="generated" id="2024-06-01-preparation_steps-idx-feature_id" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <not> <indexExists tableName="preparation_steps" indexName="preparation_steps_feature_id" /> </not> </preConditions> <createIndex tableName="preparation_steps" indexName="preparation_steps_feature_id"> <column name="feature_id" /> </createIndex> </changeSet> <changeSet author="generated" id="2024-06-01-preparation_steps-idx-preparation_procedure_id" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <not> <indexExists tableName="preparation_steps" indexName="preparation_steps_preparation_procedure_id" /> </not> </preConditions> <createIndex tableName="preparation_steps" indexName="preparation_steps_preparation_procedure_id"> <column name="preparation_procedure_id" /> </createIndex> </changeSet> </databaseChangeLog>