This commit is contained in:
2024-01-05 22:06:34 -05:00
parent c8f00cdeaf
commit abc547c642
34 changed files with 6586 additions and 1561 deletions

8
.sequelizerc Normal file
View File

@ -0,0 +1,8 @@
const path = require('path');
module.exports = {
'config': path.resolve(__dirname, 'models/sql/config/config.js'),
'models-path': path.resolve(__dirname, 'models/sql'),
'seeders-path': path.resolve(__dirname, 'models/sql/seeders'),
'migrations-path': path.resolve(__dirname, 'models/sql/migrations')
};