Merge branch 'RED-7821' into 'master'
RED-7821: Added migration to fix wrong dossier dictionary entries in redaction logs Closes RED-7821 See merge request redactmanager/persistence-service!197
This commit is contained in:
commit
517763786b
@ -0,0 +1,29 @@
|
||||
package com.iqser.red.service.persistence.management.v1.processor.migration.migrations;
|
||||
|
||||
import com.iqser.red.service.persistence.management.v1.processor.migration.Migration;
|
||||
import lombok.Setter;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Slf4j
|
||||
@Setter
|
||||
@Service
|
||||
public class FixDossierDictionaryEntryInRedactionLog14 extends Migration {
|
||||
|
||||
private static final String NAME = "Fix dossier dictionary entries in redactionLog for non dossier dictionaries";
|
||||
private static final long VERSION = 14;
|
||||
|
||||
|
||||
public FixDossierDictionaryEntryInRedactionLog14() {
|
||||
|
||||
super(NAME, VERSION);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void migrate() {
|
||||
// Migration is only needed in 3.6
|
||||
// File is only here to prevent other migration with same version.
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user