Files
gancio/.sequelizerc

8 lines
219 B
Plaintext
Raw Normal View History

2019-06-06 23:54:32 +02:00
const path = require('path')
module.exports = {
2019-06-07 17:02:33 +02:00
'config': path.resolve('config.js'),
2019-06-06 23:54:32 +02:00
'migrations-path': path.resolve('server', 'migrations'),
'models-path': path.resolve('server', 'api', 'models')
}