Skip to content

Instantly share code, notes, and snippets.

@david-mart
Last active June 11, 2019 21:02
Show Gist options
  • Save david-mart/8b833b012395972c90a237c76d40134f to your computer and use it in GitHub Desktop.
Save david-mart/8b833b012395972c90a237c76d40134f to your computer and use it in GitHub Desktop.
...
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