Skip to content

Commit

Permalink
feat: added Sequelize CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
mvegter committed Apr 28, 2020
1 parent 57655be commit d45658b
Show file tree
Hide file tree
Showing 3 changed files with 299 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .sequelizerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const path = require('path');

module.exports = {
'config': path.resolve('lib', 'config', 'database.js'),
'models-path': path.resolve('lib', 'database', 'models'),
'seeders-path': path.resolve('lib', 'database', 'seeders'),
'migrations-path': path.resolve('lib', 'database', 'migrations')
};
Loading

0 comments on commit d45658b

Please sign in to comment.