From 5555e64f0f922a11bf7286fecac1706dd2a732f2 Mon Sep 17 00:00:00 2001 From: roschaefer Date: Fri, 13 Sep 2019 13:52:54 +0200 Subject: [PATCH] Fix #1555 --- .../maintenance-worker/migration/neo4j/comments/comments.cql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deployment/legacy-migration/maintenance-worker/migration/neo4j/comments/comments.cql b/deployment/legacy-migration/maintenance-worker/migration/neo4j/comments/comments.cql index 1cdc1bfc2..083f9f762 100644 --- a/deployment/legacy-migration/maintenance-worker/migration/neo4j/comments/comments.cql +++ b/deployment/legacy-migration/maintenance-worker/migration/neo4j/comments/comments.cql @@ -55,6 +55,8 @@ ON CREATE SET c.content = comment.content, c.contentExcerpt = comment.contentExcerpt, c.deleted = comment.deleted, +c.createdAt = comment.createdAt.`$date`, +c.updatedAt = comment.updatedAt.`$date`, c.disabled = false WITH c, comment, comment.contributionId as postId MATCH (post:Post {id: postId})