Skip to content

Commit

Permalink
Fix default status value
Browse files Browse the repository at this point in the history
  • Loading branch information
versx committed May 31, 2021
1 parent 3802aa4 commit e8a5ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/subscription.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Subscription.init({
status: {
type: DataTypes.SMALLINT(5).UNSIGNED,
require: true,
defaultValue: 0,
defaultValue: NotificationStatusType.All,
},
iconStyle: {
type: DataTypes.TEXT,
Expand Down

0 comments on commit e8a5ceb

Please sign in to comment.