From 661036810978eadec41a8d5442f85853c655ccc9 Mon Sep 17 00:00:00 2001 From: William Mantly Date: Sat, 11 Apr 2020 16:36:41 -0400 Subject: [PATCH] fixed migrations --- nodejs/migrations/host_1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/migrations/host_1.js b/nodejs/migrations/host_1.js index 2f0e89c..b79f6bc 100644 --- a/nodejs/migrations/host_1.js +++ b/nodejs/migrations/host_1.js @@ -3,7 +3,7 @@ const client = require('../utils/redis'); (async function(){ - await client.rename('hosts', 'host'); + await client.RENAME('hosts', 'host'); let hosts = await client.SMEMBERS('host'); for(let host of hosts){