Merge branch 'hotfix-index' into 'release/2.589.x'
hotfix: precondition check for index creation See merge request redactmanager/persistence-service!907
This commit is contained in:
commit
eb8a9d7644
@ -2,6 +2,11 @@ databaseChangeLog:
|
|||||||
- changeSet:
|
- changeSet:
|
||||||
id: add-indexes-to-file-table
|
id: add-indexes-to-file-table
|
||||||
author: timo
|
author: timo
|
||||||
|
preConditions:
|
||||||
|
- not:
|
||||||
|
indexExists:
|
||||||
|
indexName: file_dossier_id_last_updated_idx
|
||||||
|
tableName: dossier
|
||||||
changes:
|
changes:
|
||||||
- createIndex:
|
- createIndex:
|
||||||
columns:
|
columns:
|
||||||
@ -12,6 +17,15 @@ databaseChangeLog:
|
|||||||
indexName: file_dossier_id_last_updated_idx
|
indexName: file_dossier_id_last_updated_idx
|
||||||
unique: false
|
unique: false
|
||||||
tableName: file
|
tableName: file
|
||||||
|
- changeSet:
|
||||||
|
id: add-indexes-to-file-table2
|
||||||
|
author: timo
|
||||||
|
preConditions:
|
||||||
|
- not:
|
||||||
|
indexExists:
|
||||||
|
indexName: file_dossier_id_deleted_hard_deleted_time_idx
|
||||||
|
tableName: dossier
|
||||||
|
changes:
|
||||||
- createIndex:
|
- createIndex:
|
||||||
columns:
|
columns:
|
||||||
- column:
|
- column:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user