From 3c5c8c2de82cd6b4e25bae6c2f20c7eb6c1e3e75 Mon Sep 17 00:00:00 2001 From: "j.goderbauer" <j.goderbauer@adito.de> Date: Tue, 10 Dec 2019 09:31:48 +0100 Subject: [PATCH] =?UTF-8?q?[Projekt:=20Entwicklung=20-=20Neon][TicketNr.:?= =?UTF-8?q?=201043893][=C3=9Cberarbeitung=20Indizes=20im=20Liquibase]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .liquibase/Data_alias/basic/2019.3.3/changelog.xml | 6 ++++++ .../Data_alias/basic/2019.3.3/reworkDbIndexes2.xml | 9 +++++++++ .liquibase/Data_alias/changelog.xml | 1 + 3 files changed, 16 insertions(+) create mode 100644 .liquibase/Data_alias/basic/2019.3.3/changelog.xml create mode 100644 .liquibase/Data_alias/basic/2019.3.3/reworkDbIndexes2.xml diff --git a/.liquibase/Data_alias/basic/2019.3.3/changelog.xml b/.liquibase/Data_alias/basic/2019.3.3/changelog.xml new file mode 100644 index 0000000000..cd836105e3 --- /dev/null +++ b/.liquibase/Data_alias/basic/2019.3.3/changelog.xml @@ -0,0 +1,6 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<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.6.xsd"> + + <include relativeToChangelogFile="true" file="reworkDbIndexes2.xml"/> +</databaseChangeLog> diff --git a/.liquibase/Data_alias/basic/2019.3.3/reworkDbIndexes2.xml b/.liquibase/Data_alias/basic/2019.3.3/reworkDbIndexes2.xml new file mode 100644 index 0000000000..ec790c02cf --- /dev/null +++ b/.liquibase/Data_alias/basic/2019.3.3/reworkDbIndexes2.xml @@ -0,0 +1,9 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> + <changeSet author="j.goderbauer" id="9c361635-38fc-4a42-8a4d-6f03f481878f"> + + <createIndex indexName="IDX_AB_LOGHISTORY_DATE_NEW" tableName="AB_LOGHISTORY"> + <column name="DATE_NEW" descending="true"/> + </createIndex> + </changeSet> +</databaseChangeLog> \ No newline at end of file diff --git a/.liquibase/Data_alias/changelog.xml b/.liquibase/Data_alias/changelog.xml index 05fa16c3da..cc63bd025f 100644 --- a/.liquibase/Data_alias/changelog.xml +++ b/.liquibase/Data_alias/changelog.xml @@ -6,6 +6,7 @@ <include relativeToChangelogFile="true" file="basic/2019.3.0/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2019.3.1/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2019.3.2/changelog.xml"/> + <include relativeToChangelogFile="true" file="basic/2019.3.3/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2020.0.0/changelog.xml"/> <!--enable this only when you definetly want to overwrite the existing data with demo records:--> -- GitLab