diff options
Diffstat (limited to 'models')
| -rw-r--r-- | models/participant_items.js | 4 | ||||
| -rw-r--r-- | models/player.js | 32 |
2 files changed, 32 insertions, 4 deletions
diff --git a/models/participant_items.js b/models/participant_items.js index b90fc50..89d2e61 100644 --- a/models/participant_items.js +++ b/models/participant_items.js @@ -45,6 +45,10 @@ module.exports = function(sequelize, DataTypes) { type: "DOUBLE", allowNull: true }, + trueskill_ranked_delta: { + type: "DOUBLE", + allowNull: true + }, any_afk: { type: DataTypes.INTEGER(3).UNSIGNED, allowNull: true diff --git a/models/player.js b/models/player.js index 11e5db3..d4ba62e 100644 --- a/models/player.js +++ b/models/player.js @@ -41,10 +41,6 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(11), allowNull: false }, - lifetime_gold: { - type: "DOUBLE(8,2)", - allowNull: false - }, skill_tier: { type: DataTypes.INTEGER(6), allowNull: true @@ -68,6 +64,34 @@ module.exports = function(sequelize, DataTypes) { trueskill_ranked_sigma: { type: "DOUBLE", allowNull: true + }, + rank_points_ranked: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + rank_points_blitz: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + played_ranked: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + played_casual: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + played_blitz: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + played_aral: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + guild_tag: { + type: DataTypes.STRING(191), + allowNull: true } }, { tableName: 'player', |
