Last active
June 11, 2019 21:02
-
-
Save david-mart/8b833b012395972c90a237c76d40134f 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
... | |
const ProductsDb = new Sequelize(config.productsDatabaseName, config.username, config.password, config.options); | |
ProductsDb.dialect.supports.schemas = true; // add this line | |
ProductsDb.import("models/product.js"); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment