From 30ce9e8460ac5564c5d80c65538fe236c697f545 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 22 May 2023 17:06:32 +0200 Subject: [PATCH] add description to migration --- .../src/db/migrations/20230329150329-article-label-for-posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/db/migrations/20230329150329-article-label-for-posts.js b/backend/src/db/migrations/20230329150329-article-label-for-posts.js index b1971fbec..3cf435203 100644 --- a/backend/src/db/migrations/20230329150329-article-label-for-posts.js +++ b/backend/src/db/migrations/20230329150329-article-label-for-posts.js @@ -1,6 +1,6 @@ import { getDriver } from '../../db/neo4j' -export const description = '' +export const description = 'Add to all existing posts the Article label' export async function up(next) { const driver = getDriver()