jpa-changelog-4.0.0.xml

88 lines | 4.645 kB Blame History Raw Download
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
  ~ * Copyright 2017 Red Hat, Inc. and/or its affiliates
  ~ * and other contributors as indicated by the @author tags.
  ~ *
  ~ * Licensed under the Apache License, Version 2.0 (the "License");
  ~ * you may not use this file except in compliance with the License.
  ~ * You may obtain a copy of the License at
  ~ *
  ~ * http://www.apache.org/licenses/LICENSE-2.0
  ~ *
  ~ * Unless required by applicable law or agreed to in writing, software
  ~ * distributed under the License is distributed on an "AS IS" BASIS,
  ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ * See the License for the specific language governing permissions and
  ~ * limitations under the License.
  -->
<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">

    <changeSet author="bburke@redhat.com" id="4.0.0-KEYCLOAK-6335">
        <createTable tableName="CLIENT_AUTH_FLOW_BINDINGS">
            <column name="CLIENT_ID" type="VARCHAR(36)">
                <constraints nullable="false"/>
            </column>
            <column name="FLOW_ID" type="VARCHAR(36)"/>
            <column name="BINDING_NAME" type="VARCHAR(255)">
                <constraints nullable="false"/>
            </column>
        </createTable>
        <addPrimaryKey columnNames="CLIENT_ID, BINDING_NAME" constraintName="C_CLI_FLOW_BIND" tableName="CLIENT_AUTH_FLOW_BINDINGS"/>
    </changeSet>
    <changeSet author="bburke@redhat.com" id="4.0.0-CLEANUP-UNUSED-TABLE">
        <dropTable tableName="CLIENT_IDENTITY_PROV_MAPPING"/>
    </changeSet>
    <changeSet author="bburke@redhat.com" id="4.0.0-KEYCLOAK-6228">
        <!-- Modifying some columns so that CLIENT_ID is 255.  Drop foreign key constraints too that referenced CLIENT tablename.
             This is needed for client storage SPI but only needed for tables that might reference a federated client -->

        <!--  Modify USER_CONSENT -->
        <dropUniqueConstraint constraintName="UK_JKUWUVD56ONTGSUHOGM8UEWRT" tableName="USER_CONSENT"/>
        <dropNotNullConstraint tableName="USER_CONSENT" columnName="CLIENT_ID" columnDataType="VARCHAR(36)"/>
        <addColumn tableName="USER_CONSENT">
            <column name="CLIENT_STORAGE_PROVIDER" type="VARCHAR(36)">
                <constraints nullable="true"/>
            </column>
            <column name="EXTERNAL_CLIENT_ID" type="VARCHAR(255)">
                <constraints nullable="true"/>
            </column>
        </addColumn>
        <addUniqueConstraint columnNames="CLIENT_ID, CLIENT_STORAGE_PROVIDER, EXTERNAL_CLIENT_ID, USER_ID" constraintName="UK_JKUWUVD56ONTGSUHOGM8UEWRT" tableName="USER_CONSENT"/>

        <!-- FED_USER_CONSENT -->
        <addColumn tableName="FED_USER_CONSENT">
            <column name="CLIENT_STORAGE_PROVIDER" type="VARCHAR(36)">
                <constraints nullable="true"/>
            </column>
            <column name="EXTERNAL_CLIENT_ID" type="VARCHAR(255)">
                <constraints nullable="true"/>
            </column>
        </addColumn>
        <dropNotNullConstraint tableName="FED_USER_CONSENT" columnName="CLIENT_ID" columnDataType="VARCHAR(36)"/>
        <createIndex tableName="FED_USER_CONSENT" indexName="IDX_FU_CNSNT_EXT">
            <column name="USER_ID" type="VARCHAR(255)" />
            <column name="CLIENT_STORAGE_PROVIDER" type="VARCHAR(36)" />
            <column name="EXTERNAL_CLIENT_ID" type="VARCHAR(255)" />
        </createIndex>

        <!-- Modify OFFLINE_CLIENT_SESSION -->
        <addColumn tableName="OFFLINE_CLIENT_SESSION">
            <column name="CLIENT_STORAGE_PROVIDER" type="VARCHAR(36)" defaultValue="local">
                <constraints nullable="false"/>
            </column>
             <column name="EXTERNAL_CLIENT_ID" type="VARCHAR(255)" defaultValue="local">
                <constraints nullable="false"/>
            </column>
        </addColumn>
        <update tableName="OFFLINE_CLIENT_SESSION">
            <column name="CLIENT_STORAGE_PROVIDER" value="local"/>
        </update>
        <update tableName="OFFLINE_CLIENT_SESSION">
            <column name="EXTERNAL_CLIENT_ID" value="local"/>
        </update>
        <dropPrimaryKey tableName="OFFLINE_CLIENT_SESSION" constraintName="CONSTRAINT_OFFL_CL_SES_PK3"/>
        <addPrimaryKey columnNames="USER_SESSION_ID,CLIENT_ID, CLIENT_STORAGE_PROVIDER, EXTERNAL_CLIENT_ID, OFFLINE_FLAG" constraintName="CONSTRAINT_OFFL_CL_SES_PK3" tableName="OFFLINE_CLIENT_SESSION"/>

     </changeSet>
</databaseChangeLog>