Merge branch 'RED-10425' into 'master'
RED-10425 Annotation added twice when bulk-force while auto-analysis is disabled Closes RED-10425 See merge request redactmanager/redaction-service!557
This commit is contained in:
commit
21f2ded6c6
@ -4,4 +4,5 @@
|
|||||||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.20.xsd">
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.20.xsd">
|
||||||
<include file="/mongo/changelog/tenant/1-initial-database.changelog.xml"/>
|
<include file="/mongo/changelog/tenant/1-initial-database.changelog.xml"/>
|
||||||
<include file="/mongo/changelog/tenant/2-create-indices-for-entries.xml"/>
|
<include file="/mongo/changelog/tenant/2-create-indices-for-entries.xml"/>
|
||||||
|
<include file="/mongo/changelog/tenant/7-add-entity-log-value-index.xml"/>
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
||||||
|
|||||||
@ -0,0 +1,23 @@
|
|||||||
|
<databaseChangeLog
|
||||||
|
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
|
||||||
|
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.20.xsd
|
||||||
|
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
|
||||||
|
|
||||||
|
<changeSet id="createIndexForEntityLogIdAndValue" author="corina">
|
||||||
|
|
||||||
|
<ext:createIndex collectionName="entity-log-entries">
|
||||||
|
<ext:keys>
|
||||||
|
{
|
||||||
|
"entityLogId": 1,
|
||||||
|
"value": 1,
|
||||||
|
}
|
||||||
|
</ext:keys>
|
||||||
|
<ext:options>
|
||||||
|
{name: "entityLogId_value_index"}
|
||||||
|
</ext:options>
|
||||||
|
</ext:createIndex>
|
||||||
|
|
||||||
|
</changeSet>
|
||||||
|
</databaseChangeLog>
|
||||||
Loading…
x
Reference in New Issue
Block a user