diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-12 15:50:39 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-12 15:50:39 +0200 |
| commit | 5728d5af42984bca49e30528d77c15169e4bcce0 (patch) | |
| tree | 4b73ae9bf6026d130062e6a5d4ceb11eff0e8fde /models/participant.js | |
| parent | c5cd9e53d7413ce960a2170eedb466073175bf80 (diff) | |
| download | orm-release/2.7.0.tar.gz orm-release/2.7.0.zip | |
2.7.0 phase changesrelease/2.7.0
Diffstat (limited to 'models/participant.js')
| -rw-r--r-- | models/participant.js | 6 |
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', |
