Skip to content

Commit

Permalink
Adjusted the database
Browse files Browse the repository at this point in the history
  • Loading branch information
SaddockAime committed May 25, 2024
1 parent e9e9343 commit 182ba14
Show file tree
Hide file tree
Showing 11 changed files with 1,128 additions and 167 deletions.
12 changes: 5 additions & 7 deletions .sequelizerc
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
require("@babel/register");
const path = require('path');

const path = require("path");
module.exports = {
"config": path.resolve('./dist/src/databases/config', 'config.js'),
"migrations-path": path.resolve('./dist/src/databases/migrations'),
"seeders-path": path.resolve('./dist/src/databases/seeders'),
"models-path": path.resolve('./dist/src/databases/models'),
'config': path.resolve('dist/src','databases', 'config', 'config.js'),
'models-path': path.resolve('dist/src','databases', 'models'),
'seeders-path': path.resolve('dist/src','databases', 'seeders'),
'migrations-path': path.resolve('dist/src','databases', 'migrations')
};
Loading

0 comments on commit 182ba14

Please sign in to comment.