Skip to content

Commit d45658b

Browse files
committed
feat: added Sequelize CLI
1 parent 57655be commit d45658b

3 files changed

Lines changed: 299 additions & 0 deletions

File tree

.sequelizerc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const path = require('path');
2+
3+
module.exports = {
4+
'config': path.resolve('lib', 'config', 'database.js'),
5+
'models-path': path.resolve('lib', 'database', 'models'),
6+
'seeders-path': path.resolve('lib', 'database', 'seeders'),
7+
'migrations-path': path.resolve('lib', 'database', 'migrations')
8+
};

0 commit comments

Comments
 (0)