From 5ba42c3cd059d725a26b8d4967bc0278208e1e1b Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 28 Dec 2017 13:11:24 +0100 Subject: reimport --- models/participant_items.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'models/participant_items.js') 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', -- cgit v1.3.1