From 5728d5af42984bca49e30528d77c15169e4bcce0 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 12 Jun 2017 15:50:39 +0200 Subject: 2.7.0 phase changes --- models/participant.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'models/participant.js') diff --git a/models/participant.js b/models/participant.js index 8faeaaf..d7fc638 100644 --- a/models/participant.js +++ b/models/participant.js @@ -9,7 +9,7 @@ module.exports = function(sequelize, DataTypes) { autoIncrement: true }, shard_id: { - type: DataTypes.STRING(5), + type: DataTypes.STRING(191), allowNull: false }, api_id: { @@ -96,6 +96,10 @@ module.exports = function(sequelize, DataTypes) { trueskill_delta: { type: "DOUBLE", allowNull: true + }, + nacl_score: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant', -- cgit v1.3.1