jpa-changelog-1.2.0.Final.xml
    
    
    
    
    
        Home
            /
connections                    /
jpa-liquibase                    /
src                    /
main                    /
resources                    /
META-INF                    /
                    jpa-changelog-1.2.0.Final.xml
    
    
            
            <?xml version="1.0" 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.1.xsd">
    <changeSet author="keycloak" id="1.2.0.Final">
        <!-- KEYCLOAK-1277 -->
        <update tableName="CLIENT">
            <column name="DIRECT_GRANTS_ONLY" valueBoolean="false"/>
            <where>DIRECT_GRANTS_ONLY is null</where>
        </update>
        <update tableName="CLIENT">
            <column name="BEARER_ONLY" valueBoolean="false"/>
            <where>BEARER_ONLY is null</where>
        </update>
        <update tableName="CLIENT">
            <column name="SURROGATE_AUTH_REQUIRED" valueBoolean="false"/>
            <where>SURROGATE_AUTH_REQUIRED is null</where>
        </update>
    </changeSet>
</databaseChangeLog>