Created
September 24, 2019 16:26
-
-
Save vbguard/8158872c8ac6e270be6b08b2620c6022 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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