Skip to content
Snippets Groups Projects
.sequelizerc 281 B
const path = require('path')

module.exports = {
	'config': path.resolve('src', 'config', 'sequelize.js'),
	'models-path': path.resolve('src', 'database', 'models'),
	'seeders-path': path.resolve('database', 'seeders'),
	'migrations-path': path.resolve('database', 'migrations'),
}