Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kasir-barati/e992b76c7e41b3aa9e40fda60d595e36 to your computer and use it in GitHub Desktop.
Save kasir-barati/e992b76c7e41b3aa9e40fda60d595e36 to your computer and use it in GitHub Desktop.
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