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

Notifications: Tables indizes liquibase

parent 825bf2f7
No related branches found
No related tags found
No related merge requests found
......@@ -18,5 +18,9 @@
<column name="TYPECODE" type="VARCHAR(63)"/>
<column name="VERSION" type="INTEGER"/>
</createTable>
<createIndex indexName="idx_asysnoticontents_contid" tableName="ASYS_NOTIFICATIONCONTENTS">
<column name="CONTENTID"/>
</createIndex>
</changeSet>
</databaseChangeLog>
\ No newline at end of file
......@@ -10,5 +10,14 @@
<column name="USERID" type="VARCHAR(63)"/>
<column name="RESOLVEDPRIORITY" type="VARCHAR(15)"/>
</createTable>
<createIndex indexName="idx_asysnoti_contentid" tableName="ASYS_NOTIFICATIONS">
<column name="CONTENTID"/>
</createIndex>
<createIndex indexName="idx_asysnoti_state" tableName="ASYS_NOTIFICATIONS">
<column name="STATE"/>
</createIndex>
<createIndex indexName="idx_asysnoti_userid" tableName="ASYS_NOTIFICATIONS">
<column name="USERID"/>
</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