.sequelizerc 258 B

1234567
  1. const path = require('path');
  2. module.exports = {
  3. 'config': path.resolve('db', 'config', 'config.json'),
  4. 'models-path': path.resolve('db', 'models'),
  5. 'seeders-path': path.resolve('db', 'seeders'),
  6. 'migrations-path': path.resolve('db', 'migrations')
  7. }