summaryrefslogtreecommitdiff
path: root/models/participant.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/participant.js')
-rw-r--r--models/participant.js6
1 files changed, 5 insertions, 1 deletions
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',