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 b5166b3..f545fb3 100644 --- a/models/participant.js +++ b/models/participant.js @@ -84,6 +84,14 @@ module.exports = function(sequelize, DataTypes) { winner: { type: DataTypes.INTEGER(1), allowNull: false + }, + trueskill_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_sigma: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant', |
