diff options
Diffstat (limited to 'models/participant_phases.js')
| -rw-r--r-- | models/participant_phases.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js index 1fe2be2..4ada1db 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -331,6 +331,38 @@ module.exports = function(sequelize, DataTypes) { player_damage: { type: "BLOB", allowNull: false + }, + heal_heal_hero: { + type: "DOUBLE", + allowNull: true + }, + heal_healed_hero: { + type: "DOUBLE", + allowNull: true + }, + heal_heal_other: { + type: "DOUBLE", + allowNull: true + }, + heal_healed_other: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_heal_hero: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_healed_hero: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_heal_other: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_healed_other: { + type: "DOUBLE", + allowNull: true } }, { tableName: 'participant_phases', |
