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

liquibase.changelog.xml Maven / Gradle / Ivy

Go to download

This extension shares database deployment information from Liquibase to DBmarlin's timeline for context and insights into database performance.

The newest version!
<?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:pro="http://www.liquibase.org/xml/ns/pro" 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/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-4.1.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.1.xsd" changeLogId="da208b51-5dee-45f5-9564-296c67805adc">

    <changeSet author="r2" id="1" labels="dropindex" runAlways="true">
        <dropIndex indexName="rides_passenger_count_pickup_datetime_idx" tableName="rides"/>
    </changeSet>

    <changeSet author="r2" id="2" labels="dropindex" runAlways="true">
        <dropIndex indexName="rides_pickup_datetime_vendor_id_idx" tableName="rides"/>
    </changeSet>

    <changeSet author="r2" id="3"  labels="createindex" runAlways="true">
        <createIndex indexName="rides_passenger_count_pickup_datetime_idx" tableName="rides">
            <column name="passenger_count"/>
            <column descending="true" name="pickup_datetime"/>
        </createIndex>
    </changeSet>

    <changeSet author="r2" id="4" labels="createindex" runAlways="true">
        <createIndex indexName="rides_pickup_datetime_vendor_id_idx" tableName="rides">
            <column descending="true" name="pickup_datetime"/>
            <column name="vendor_id"/>
        </createIndex>
    </changeSet>

</databaseChangeLog>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy