From 6046f9fab3df7f3f8a9572e06b8d23a10f21e76b Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 11 Oct 2017 19:50:34 +0200 Subject: reimport --- models/participant_items.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'models/participant_items.js') 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', -- cgit v1.3.1