summaryrefslogtreecommitdiff
path: root/models/participant.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/participant.js')
-rw-r--r--models/participant.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/models/participant.js b/models/participant.js
index 5791b56..0751c01 100644
--- a/models/participant.js
+++ b/models/participant.js
@@ -84,7 +84,7 @@ module.exports = function(sequelize, DataTypes) {
winner: {
type: DataTypes.INTEGER(1),
allowNull: false
- }/*,
+ },
trueskill_mu: {
type: "DOUBLE",
allowNull: true
@@ -92,7 +92,11 @@ module.exports = function(sequelize, DataTypes) {
trueskill_sigma: {
type: "DOUBLE",
allowNull: true
- }*/
+ },
+ trueskill_delta: {
+ type: "DOUBLE",
+ allowNull: true
+ }
}, {
tableName: 'participant',
timestamps: false,