Skip to content

Instantly share code, notes, and snippets.

@vbguard
Created September 24, 2019 16:26
Show Gist options
  • Select an option

  • Save vbguard/8158872c8ac6e270be6b08b2620c6022 to your computer and use it in GitHub Desktop.

Select an option

Save vbguard/8158872c8ac6e270be6b08b2620c6022 to your computer and use it in GitHub Desktop.
sequelize
// .sync({ force: true })
.sync()
.then(result => {
console.log(result);
app.listen(3000);
})
.catch(err => {
console.log(err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment