summaryrefslogtreecommitdiff
path: root/models/participant_items.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/participant_items.js')
-rw-r--r--models/participant_items.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/models/participant_items.js b/models/participant_items.js
index 061bf5a..b90fc50 100644
--- a/models/participant_items.js
+++ b/models/participant_items.js
@@ -36,6 +36,18 @@ module.exports = function(sequelize, DataTypes) {
surrender: {
type: DataTypes.INTEGER(1),
allowNull: false
+ },
+ trueskill_ranked_mu: {
+ type: "DOUBLE",
+ allowNull: true
+ },
+ trueskill_ranked_sigma: {
+ type: "DOUBLE",
+ allowNull: true
+ },
+ any_afk: {
+ type: DataTypes.INTEGER(3).UNSIGNED,
+ allowNull: true
}
}, {
tableName: 'participant_items',