Files
parcer/.sequelizerc

8 lines
286 B
Plaintext
Raw Normal View History

2025-03-27 00:09:45 +05:30
import path from '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')
};