What are you doing?
Configuring sequelize client for migrations, using a .sequelizerc file that looks like this:
const path = require('path');
module.exports = {
'config': path.resolve('migrations/config'),
'migrations-path': path.resolve('migrations'),
'seeders-path': path.resolve('migrations/seeders'),
'models-path': path.resolve('migrations/models')
};
What do you expect to happen?
This should work without alerts.
What is actually happening?
It's throwing warnings

Related to this line in umzug https://github.com/sequelize/umzug/blob/3f7c126bedd81e5572721e00282644112cc2d2a7/src/index.js#L471
Looks like you are not passing config.js and model.js to umzug, but just passing config and models, which does not match the expected pattern.
Dialect: postgres
Sequelize version: v4.38.0
Tested with latest release: Yes
What are you doing?
Configuring sequelize client for migrations, using a
.sequelizercfile that looks like this:What do you expect to happen?
This should work without alerts.
What is actually happening?
It's throwing warnings

Related to this line in umzug https://github.com/sequelize/umzug/blob/3f7c126bedd81e5572721e00282644112cc2d2a7/src/index.js#L471
Looks like you are not passing
config.jsandmodel.jsto umzug, but just passingconfigandmodels, which does not match the expected pattern.Dialect: postgres
Sequelize version: v4.38.0
Tested with latest release: Yes