Skip to content

Commit

Permalink
chore: fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael.Taylor committed Dec 7, 2021
2 parents 1750631 + 12223d0 commit 69f279a
Show file tree
Hide file tree
Showing 21 changed files with 13,205 additions and 298 deletions.
2 changes: 1 addition & 1 deletion .sequelizerc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var path = require('path');

module.exports = {
config: path.resolve('src', 'config', 'database.json'),
config: path.resolve('src', 'config', 'config.json'),
'migrations-path': path.resolve('migrations'),
'models-path': path.resolve('src', 'models'),
'seeders-path': path.resolve('seeders'),
Expand Down
20 changes: 0 additions & 20 deletions config/config.json

This file was deleted.

23 changes: 0 additions & 23 deletions config/database.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ module.exports = {
data: {
type: Sequelize.STRING(10000),
},
createdAt: {
allowNull: false,
type: Sequelize.DATE,
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE,
},
});
},

Expand Down
Loading

0 comments on commit 69f279a

Please sign in to comment.