diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-11-05 14:51:21 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-11-05 14:51:21 +0100 |
| commit | e53a7dabcdc5ec81b67e63371bbe247bb25831ca (patch) | |
| tree | cad88301743fe2746a1457dc992f22b277ac60d6 /models/participant_phases.js | |
| parent | 4d374009067e890a4fbebacc5c4852522c3b6965 (diff) | |
| download | orm-e53a7dabcdc5ec81b67e63371bbe247bb25831ca.tar.gz orm-e53a7dabcdc5ec81b67e63371bbe247bb25831ca.zip | |
reimport
Diffstat (limited to 'models/participant_phases.js')
| -rw-r--r-- | models/participant_phases.js | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js index c615eb2..74de38a 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -328,6 +328,14 @@ module.exports = function(sequelize, DataTypes) { type: "DOUBLE", allowNull: true }, + heal_heal_ally: { + type: "DOUBLE", + allowNull: true + }, + heal_healed_ally: { + type: "DOUBLE", + allowNull: true + }, heal_heal_other: { type: "DOUBLE", allowNull: true @@ -344,6 +352,18 @@ module.exports = function(sequelize, DataTypes) { type: "DOUBLE", allowNull: true }, + heal_rcvd_healed_vamp: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_heal_ally: { + type: "DOUBLE", + allowNull: true + }, + heal_rcvd_healed_ally: { + type: "DOUBLE", + allowNull: true + }, heal_rcvd_heal_other: { type: "DOUBLE", allowNull: true @@ -356,17 +376,17 @@ module.exports = function(sequelize, DataTypes) { type: "BLOB", allowNull: true }, - item_sells: { + item_grants_inorder: { type: "BLOB", allowNull: true }, - items: { + item_sells: { type: "BLOB", allowNull: true }, - item_grants_inorder: { + items: { type: "BLOB", - allowNull: false + allowNull: true } }, { tableName: 'participant_phases', |
