Pull request #472: RED-4483-skippedHexColor not added during migration

Merge in RED/persistence-service from bugfix/RED-4483 to master

* commit '2a999b848f9754f713fc1e512ac20bad07f62203':
  RED-4483-skippedHexColor not added during migration
This commit is contained in:
Corina Olariu 2022-07-05 13:58:31 +02:00 committed by Timo Bejan
commit 0935f1faa0
2 changed files with 3 additions and 0 deletions

View File

@ -83,3 +83,5 @@ databaseChangeLog:
file: db/changelog/sql/33-set-file-processing-error-counter.sql
- include:
file: db/changelog/34-add-reports-information-column.changelog.yaml
- include:
file: db/changelog/sql/35-update-skipped-color-existing-types.sql

View File

@ -0,0 +1 @@
update entity e set skipped_hex_color = (select not_redacted from color_configuration c where c.dossier_template_id = e.dossier_template_id) where skipped_hex_color is null;