Files
parcer/.sequelizerc

8 lines
291 B
Plaintext
Raw Normal View History

const path = require('path');
2025-03-24 22:50:49 +05:30
module.exports = {
'config': path.resolve('server/src/db/config', 'database.js'),
'models-path': path.resolve('server/src/db/models'),
'seeders-path': path.resolve('server/src/db/seeders'),
'migrations-path': path.resolve('server/src/db/migrations')
};