diff options
Diffstat (limited to 'models/participant_phases.js')
| -rw-r--r-- | models/participant_phases.js | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js index 876dec3..cfaeb18 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -72,11 +72,19 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(8).UNSIGNED, allowNull: true }, - hero_dps: { + hero_damage_true: { type: "DOUBLE", allowNull: true }, - non_hero_dps: { + hero_damage_dealt: { + type: "DOUBLE", + allowNull: true + }, + non_hero_damage: { + type: "DOUBLE", + allowNull: true + }, + non_hero_damage_dealt: { type: "DOUBLE", allowNull: true }, |
