RED-2900: Fixed missing migration of softdeletedTime in comments

This commit is contained in:
deiflaender 2021-12-03 12:09:02 +01:00
parent 116db7df5f
commit cb6e8411bf

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);