From a7489a044c4b4b556f6b26d555657478ebd6409b Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 17 Feb 2021 20:26:53 +0100 Subject: [PATCH] add null mutation --- backend/src/db/migrations/1613589876420-null_mutation.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 backend/src/db/migrations/1613589876420-null_mutation.js diff --git a/backend/src/db/migrations/1613589876420-null_mutation.js b/backend/src/db/migrations/1613589876420-null_mutation.js new file mode 100644 index 000000000..f158549de --- /dev/null +++ b/backend/src/db/migrations/1613589876420-null_mutation.js @@ -0,0 +1,9 @@ +'use strict' + +module.exports.up = function (next) { + next() +} + +module.exports.down = function (next) { + next() +}