Skip to content
Snippets Groups Projects
Commit 825bf2f7 authored by Andreas Schindlbeck's avatar Andreas Schindlbeck
Browse files

#1063996 Favorites: Table indizes liquibase

parent 71b47a88
No related branches found
No related tags found
No related merge requests found
......@@ -9,5 +9,14 @@
<column name="ROW_ID" type="CHAR(36)"/>
<column name="RECORDGROUP_ID" type="CHAR(36)"/>
</createTable>
<createIndex indexName="idx_asysrecord_objecttype" tableName="ASYS_RECORD">
<column name="OBJECT_TYPE"/>
</createIndex>
<createIndex indexName="idx_asysrecord_rowid" tableName="ASYS_RECORD">
<column name="ROW_ID"/>
</createIndex>
<createIndex indexName="idx_asysrecord_rdgpid" tableName="ASYS_RECORD">
<column name="RECORDGROUP_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
......@@ -9,5 +9,11 @@
<column name="TITLE" type="VARCHAR(256)"/>
<column name="GROUP_TYPE" type="VARCHAR(64)"/>
</createTable>
<createIndex indexName="idx_asysrecordgroup_id" tableName="ASYS_RECORDGROUP">
<column name="ID"/>
</createIndex>
<createIndex indexName="idx_asysrecordgroup_userid" tableName="ASYS_RECORDGROUP">
<column name="USER_ID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment