From 2f54618895f80afc26e738f06aebb88fda6342f7 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 28 May 2017 13:26:00 +0200 Subject: disable trueskill, waiting for migrations on prod --- models/player.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'models/player.js') diff --git a/models/player.js b/models/player.js index 8851db7..3f0565b 100644 --- a/models/player.js +++ b/models/player.js @@ -48,7 +48,7 @@ module.exports = function(sequelize, DataTypes) { skill_tier: { type: DataTypes.INTEGER(6), allowNull: true - }, + }/*, trueskill_mu: { type: "DOUBLE", allowNull: true @@ -56,7 +56,7 @@ module.exports = function(sequelize, DataTypes) { trueskill_sigma: { type: "DOUBLE", allowNull: true - } + }*/ }, { tableName: 'player', timestamps: false, -- cgit v1.3.1