Files
Ucharify_api/.sequelizerc
2019-03-13 21:22:01 -07:00

8 lines
267 B
Plaintext

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