config files and scripts for database migration system

This commit is contained in:
jackiettran
2025-11-24 13:48:10 -05:00
parent a9f3d37343
commit 6aac929ec1
3 changed files with 69 additions and 15 deletions

7
backend/.sequelizerc Normal file
View File

@@ -0,0 +1,7 @@
const path = require('path');
module.exports = {
'config': path.resolve('config', 'database.js'),
'migrations-path': path.resolve('migrations'),
'models-path': path.resolve('models'),
};