diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-12-28 13:11:24 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-12-28 13:11:24 +0100 |
| commit | 5ba42c3cd059d725a26b8d4967bc0278208e1e1b (patch) | |
| tree | 177db297d1510d93a0a80ee088edb45cf26d8848 /models/participant_items.js | |
| parent | ad1ad2e29d829acfcba04cd242ad04412ef1e2e7 (diff) | |
| download | orm-5ba42c3cd059d725a26b8d4967bc0278208e1e1b.tar.gz orm-5ba42c3cd059d725a26b8d4967bc0278208e1e1b.zip | |
reimport
Diffstat (limited to 'models/participant_items.js')
| -rw-r--r-- | models/participant_items.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/models/participant_items.js b/models/participant_items.js index b90fc50..7ea4a9f 100644 --- a/models/participant_items.js +++ b/models/participant_items.js @@ -48,6 +48,30 @@ module.exports = function(sequelize, DataTypes) { any_afk: { type: DataTypes.INTEGER(3).UNSIGNED, allowNull: true + }, + trueskill_casual_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_casual_sigma: { + type: "DOUBLE", + allowNull: true + }, + trueskill_blitz_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_blitz_sigma: { + type: "DOUBLE", + allowNull: true + }, + trueskill_br_mu: { + type: "DOUBLE", + allowNull: true + }, + trueskill_br_sigma: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant_items', |
