diff options
Diffstat (limited to 'bot/.sequelizerc')
| -rw-r--r-- | bot/.sequelizerc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bot/.sequelizerc b/bot/.sequelizerc new file mode 100644 index 0000000..88c41dd --- /dev/null +++ b/bot/.sequelizerc @@ -0,0 +1,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') +}; |
