Created
January 3, 2021 11:09
-
-
Save kasir-barati/e992b76c7e41b3aa9e40fda60d595e36 to your computer and use it in GitHub Desktop.
This file contains 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
const sequelize = require("../sequelize"); | |
const Order = require("./order"); | |
const Payment = require("./payment"); | |
sequelize | |
.getSeq() | |
.sync({ force: true }) | |
.then(async () => { | |
// queries | |
}) | |
.catch(console.error); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment