liquibase.plugincoremodel.tableLocationsHistLocations.xml Maven / Gradle / Ivy
<?xml version="1.0" 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="scf" id="2021-01-01-locationsHistLocations" objectQuotingStrategy="QUOTE_ALL_OBJECTS"> <preConditions onFail="MARK_RAN"> <not> <tableExists tableName="LOCATIONS_HIST_LOCATIONS" /> </not> </preConditions> <createTable tableName="LOCATIONS_HIST_LOCATIONS"> <column name="LOCATION_ID" type="${idType-Location}"> <constraints nullable="false"/> </column> <column name="HIST_LOCATION_ID" type="${idType-HistLocation}"> <constraints nullable="false"/> </column> </createTable> <addPrimaryKey columnNames="LOCATION_ID, HIST_LOCATION_ID" constraintName="LOCATIONS_HIST_LOCATIONS_PKEY" tableName="LOCATIONS_HIST_LOCATIONS"/> <createIndex tableName="LOCATIONS_HIST_LOCATIONS" indexName="LOCATIONS_HIST_LOCATIONS_HIST_LOCATION_ID"> <column name="HIST_LOCATION_ID" /> </createIndex> <createIndex tableName="LOCATIONS_HIST_LOCATIONS" indexName="LOCATIONS_HIST_LOCATIONS_LOCATION_ID"> <column name="LOCATION_ID" /> </createIndex> </changeSet> </databaseChangeLog>