Skip to content

Commit

Permalink
small Account model work
Browse files Browse the repository at this point in the history
  • Loading branch information
eroub committed Jan 31, 2024
1 parent 5f64677 commit c9e0b48
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/models/Account.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ module.exports = (sequelize, Sequelize) => {
model: 'User',
key: 'userID'
}
},
visible: {
type: Sequelize.BOOLEAN,
defaultValue: true,
allowNull: false
}
}, {
timestamps: false
Expand Down

0 comments on commit c9e0b48

Please sign in to comment.