summaryrefslogtreecommitdiff
path: root/models/participant_phases.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-10-11 19:50:34 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-10-11 19:50:34 +0200
commit6046f9fab3df7f3f8a9572e06b8d23a10f21e76b (patch)
treebe7d9ae2d0e2f889517b0f78797cccce4cf5e754 /models/participant_phases.js
parent1d5762376b69d14a96d55f9372e07b32422426b6 (diff)
downloadorm-6046f9fab3df7f3f8a9572e06b8d23a10f21e76b.tar.gz
orm-6046f9fab3df7f3f8a9572e06b8d23a10f21e76b.zip
reimport
Diffstat (limited to 'models/participant_phases.js')
-rw-r--r--models/participant_phases.js32
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',