From 6046f9fab3df7f3f8a9572e06b8d23a10f21e76b Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 11 Oct 2017 19:50:34 +0200 Subject: reimport --- models/participant_phases.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'models/participant_phases.js') 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', -- cgit v1.3.1