diff options
Diffstat (limited to 'models/participant_items.js')
| -rw-r--r-- | models/participant_items.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/models/participant_items.js b/models/participant_items.js index b90fc50..7ea4a9f 100644 --- a/models/participant_items.js +++ b/models/participant_items.js @@ -48,6 +48,30 @@ module.exports = function(sequelize, DataTypes) { any_afk: { type: DataTypes.INTEGER(3).UNSIGNED, allowNull: true + }, + trueskill_casual_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_casual_sigma: { + type: "DOUBLE", + allowNull: true + }, + trueskill_blitz_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_blitz_sigma: { + type: "DOUBLE", + allowNull: true + }, + trueskill_br_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_br_sigma: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant_items', |
