Skip to content

Commit

Permalink
Modified JobStatus sequelize schema
Browse files Browse the repository at this point in the history
  • Loading branch information
antoineludeau committed Aug 22, 2023
1 parent e4b77a1 commit 3fff500
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/util/sequelize.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,14 @@ export const JobStatus = sequelize.define('JobStatus', {
type: DataTypes.STRING,
allowNull: true,
},
dataType: {
type: DataTypes.STRING,
allowNull: true,
},
jobType: {
type: DataTypes.STRING,
allowNull: true,
},
count: {
type: DataTypes.INTEGER,
allowNull: true,
Expand Down

0 comments on commit 3fff500

Please sign in to comment.