summaryrefslogtreecommitdiff
path: root/models/participant.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-06-01 20:56:46 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-06-01 20:56:46 +0200
commite263eecd3951de72a67d00c26c95e9752179a39c (patch)
treefbe5155c20f6d89025bcf4475e5a4595d12e5a67 /models/participant.js
parent2f54618895f80afc26e738f06aebb88fda6342f7 (diff)
downloadorm-release/2.5.0.tar.gz
orm-release/2.5.0.zip
enable trueskillrelease/2.5.0
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,