Pull request #142: RED-2900: Fixed missing migration of softdeletedTime in comments

Merge in RED/persistence-service from RED-2900-delComments to master

* commit 'cb6e8411bf2f262cd17d9e7da63b7739ee7eaf05':
  RED-2900: Fixed missing migration of softdeletedTime in comments
This commit is contained in:
Dominique Eiflaender 2021-12-03 12:13:17 +01:00
commit a65a916338

View File

@ -642,6 +642,7 @@ public class MigrationService {
.annotationId(comment.getAnnotationId())
.user(comment.getUser())
.date(comment.getDate())
.softDeletedTime(comment.getSoftDeletedTime())
.build();
commentRepository.save(commentEntity);