From f2d34cc815979be4ca65055b3c6addcd595a94e9 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 22 Feb 2021 21:15:18 +0100 Subject: [PATCH] linting --- .../db/migrations/1614023644903-add-clickedCount-to-posts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/db/migrations/1614023644903-add-clickedCount-to-posts.js b/backend/src/db/migrations/1614023644903-add-clickedCount-to-posts.js index 24d2ded0e..ff95a25df 100644 --- a/backend/src/db/migrations/1614023644903-add-clickedCount-to-posts.js +++ b/backend/src/db/migrations/1614023644903-add-clickedCount-to-posts.js @@ -8,7 +8,7 @@ module.exports.up = async function (next) { const driver = getDriver() const session = driver.session() const transaction = session.beginTransaction() - try { + try { // Implement your migration here. await transaction.run(` MATCH (p:Post) @@ -32,7 +32,7 @@ module.exports.down = async function (next) { const driver = getDriver() const session = driver.session() const transaction = session.beginTransaction() - try { + try { // Implement your migration here. await transaction.run(` MATCH (p:Post)