Skip to content

Commit

Permalink
fix(migration): end_date should be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
WikiRik committed Nov 9, 2020
1 parent 8c1a800 commit 2cf2c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/20201106225940-create-board.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
},
end_date: {
type: Sequelize.DATEONLY,
allowNull: false
allowNull: true
},
president: {
type: Sequelize.INTEGER,
Expand Down

0 comments on commit 2cf2c9b

Please sign in to comment.