aboutsummaryrefslogtreecommitdiff
path: root/bot/.sequelizerc
blob: 88c41dd446edb34c133ad4222972e4d613638df3 (plain) (blame)
1
2
3
4
5
6
7
8
const path = require('path');

module.exports = {
  'config': path.resolve('src/db/config', 'config.json'),
  'models-path': path.resolve('src', 'models'),
  'seeders-path': path.resolve('src/db', 'seeders'),
  'migrations-path': path.resolve('src/db', 'migrations')
};