KEYCLOAK-16844 Create an index to support offline sessions loading
This commit is contained in:
parent
6e9722b446
commit
7f421fb20a
1 changed files with 8 additions and 0 deletions
|
@ -30,4 +30,12 @@
|
|||
<dropTable tableName="CLIENT_DEFAULT_ROLES" />
|
||||
</changeSet>
|
||||
|
||||
<changeSet author="keycloak" id="13.0.0-KEYCLOAK-16844">
|
||||
<createIndex tableName="OFFLINE_USER_SESSION" indexName="IDX_OFFLINE_USS_PRELOAD">
|
||||
<column name="OFFLINE_FLAG" type="VARCHAR(4)"/>
|
||||
<column name="CREATED_ON" type="INT"/>
|
||||
<column name="USER_SESSION_ID" type="VARCHAR(36)"/>
|
||||
</createIndex>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
|
Loading…
Reference in a new issue