diff options
Diffstat (limited to 'models/participant_stats.js')
| -rw-r--r-- | models/participant_stats.js | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js index 6b2c9a9..f7cfbf2 100644 --- a/models/participant_stats.js +++ b/models/participant_stats.js @@ -16,11 +16,6 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.TIME, allowNull: true }, - final: { - type: DataTypes.INTEGER(1), - allowNull: false, - defaultValue: "1" - }, participant_api_id: { type: DataTypes.CHAR(36), allowNull: false @@ -188,6 +183,22 @@ module.exports = function(sequelize, DataTypes) { duration: { type: DataTypes.INTEGER(5).UNSIGNED, allowNull: false + }, + hero_damage_true: { + type: "DOUBLE", + allowNull: true + }, + hero_damage_dealt: { + type: "DOUBLE", + allowNull: true + }, + non_hero_damage: { + type: "DOUBLE", + allowNull: true + }, + non_hero_dps_damage: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant_stats', |
