Skip to content

Commit

Permalink
fix: change related projects fields to correct type
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Feb 24, 2022
1 parent 2433f08 commit 82b9592
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/models/ratings/ratings.modeltypes.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ module.exports = {
required: true,
},
ratingRangeHighest: {
type: Sequelize.INTEGER,
type: Sequelize.STRING,
required: true,
},
ratingRangeLowest: {
type: Sequelize.INTEGER,
type: Sequelize.STRING,
requred: true,
},
rating: {
type: Sequelize.INTEGER,
type: Sequelize.STRING,
requred: true,
},
ratingLink: Sequelize.STRING,
Expand Down

0 comments on commit 82b9592

Please sign in to comment.