diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 19:50:34 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-10-11 19:50:34 +0200 |
| commit | 6046f9fab3df7f3f8a9572e06b8d23a10f21e76b (patch) | |
| tree | be7d9ae2d0e2f889517b0f78797cccce4cf5e754 /models/player.js | |
| parent | 1d5762376b69d14a96d55f9372e07b32422426b6 (diff) | |
| download | orm-6046f9fab3df7f3f8a9572e06b8d23a10f21e76b.tar.gz orm-6046f9fab3df7f3f8a9572e06b8d23a10f21e76b.zip | |
reimport
Diffstat (limited to 'models/player.js')
| -rw-r--r-- | models/player.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/models/player.js b/models/player.js index 6e47161..9441953 100644 --- a/models/player.js +++ b/models/player.js @@ -60,6 +60,22 @@ module.exports = function(sequelize, DataTypes) { elo: { type: "DOUBLE", allowNull: true + }, + trueskill_casual_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_casual_sigma: { + type: "DOUBLE", + allowNull: true + }, + trueskill_ranked_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_ranked_sigma: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'player', |
