Files
gancio/.sequelizerc

8 lines
231 B
Plaintext
Raw Normal View History

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