working on new tables for payments

This commit is contained in:
Arjun Patel
2019-01-29 19:55:32 -08:00
parent ad26f7b6fd
commit d6643c32f9
8 changed files with 154 additions and 13 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ db.sequelize
});
//force: true will drop the table if it already exists
const drop_tables = false;
const drop_tables = true;
db.sequelize.sync({ force: drop_tables }).then(() => {
console.log(`Drop and Resync with { force: ${drop_tables} }`);
});