diff options
Diffstat (limited to 'models/participant.js')
| -rw-r--r-- | models/participant.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/models/participant.js b/models/participant.js index c364181..0623578 100644 --- a/models/participant.js +++ b/models/participant.js @@ -33,6 +33,14 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false }, + game_mode_id: { + type: DataTypes.INTEGER(10).UNSIGNED, + allowNull: false + }, + role_id: { + type: DataTypes.INTEGER(10).UNSIGNED, + allowNull: false + }, created_at: { type: DataTypes.TIME, allowNull: false |
