summaryrefslogtreecommitdiff
path: root/.sequelizerc
blob: 29a0d145e80fc8aabd6b598655bb5769a02a91bb (plain)
1
2
3
4
5
6
7
8
var path = require('path');

module.exports = {
    'config':          path.resolve('config.json'),
    'migrations-path': path.resolve('lib', 'migrations'),
    'models-path':     path.resolve('lib', 'models'),
    'url':             'change this'
}