streetmix/streetmix

View on GitHub
.sequelizerc

Summary

Maintainability
Test Coverage
const path = require('node:path')

module.exports = {
  'config': path.resolve('app', 'db', 'config', 'config.js'),
  'models-path': path.resolve('app', 'db', 'models'),
  'seeders-path': path.resolve('app', 'db', 'seeders'),
  'migrations-path': path.resolve('app', 'db', 'migrations')
}