dbl-coins-invest
Version:
Sharade DBL package over other coins invest services
15 lines (13 loc) • 349 B
JavaScript
;
var _index = require('../index');
_index.sequelize.sync({
force: true
}) // create the database table for our model(s)
.then(function (resp) {
console.log('DB Created');
}).then(function (resp) {
console.log('DB Created 2');
}).catch(function (err) {
console.error('ERROR in DB Creation');
console.error(err);
});