From 116f0446e5cd92c43131c7a2ba4e8806d57f39db Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Tue, 16 Jul 2019 22:55:59 -0500 Subject: [PATCH] fix(migrations): don't default to mystery items --- migrations/migration-runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/migration-runner.js b/migrations/migration-runner.js index c65f18def7..39cec8b1aa 100644 --- a/migrations/migration-runner.js +++ b/migrations/migration-runner.js @@ -17,7 +17,7 @@ function setUpServer () { setUpServer(); // Replace this with your migration -const processUsers = require('./users/mystery-items.js'); +const processUsers = require(''); processUsers() .then(function success () { process.exit(0);