From c4a91910b37b59f33ca1345b93a36a0338fc0082 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Sat, 2 Feb 2019 23:07:43 -0800 Subject: [PATCH] making sure not cleaning tables --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 35d9835..73ec13d 100644 --- a/server.js +++ b/server.js @@ -37,7 +37,7 @@ db.sequelize }); //force: true will drop the table if it already exists -const drop_tables = true; +const drop_tables = false; db.sequelize.sync({ force: drop_tables }).then(() => { console.log(`Drop and Resync with { force: ${drop_tables} }`); });