spee.ch/.sequelizerc

9 lines
278 B
Text
Raw Normal View History

2017-11-07 10:57:31 -08:00
const path = require('path');
module.exports = {
2018-03-12 19:26:03 -07:00
'config': path.resolve('devConfig', 'sequelizeCliConfig.js'),
'models-path': path.resolve('server', 'models'),
'seeders-path': path.resolve('server', 'seeders'),
'migrations-path': path.resolve('server', 'migrations')
2018-03-12 19:26:03 -07:00
}