Pull request #397: RED-705-Remove DELETED status for dossiers and files and use deleted timestamps instead

Merge in RED/persistence-service from RED-3705_1 to master

* commit 'ab208e778fff94be24dea48b643892fac3c2025e':
  RED-705-Remove DELETED status for dossiers and files and use deleted timestamps instead
This commit is contained in:
Corina Olariu 2022-05-09 07:03:32 +02:00 committed by Timo Bejan
commit 13acc06060
2 changed files with 3 additions and 0 deletions

View File

@ -65,3 +65,5 @@ databaseChangeLog:
file: db/changelog/26-application-config-table.changelog.yaml
- include:
file: db/changelog/sql/26-initiliaze-application-configuration-table.sql
- include:
file: db/changelog/sql/27-update-soft-delete-date.sql

View File

@ -0,0 +1 @@
update file set deleted = CURRENT_TIMESTAMP where deleted is null and hard_deleted_time is null and processing_status = 'DELETED';