diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-21 19:40:03 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-21 19:40:03 +0200 |
| commit | b580deeb6d890e411fd26fc78bef55427e4755c5 (patch) | |
| tree | 087b4fbf6e874a0f7d4f74d8a5d1f4014722f6a5 /models | |
| parent | 8c806f8bbbc2d4e249b5ad04069a7a9f44fcce1b (diff) | |
| download | orm-b580deeb6d890e411fd26fc78bef55427e4755c5.tar.gz orm-b580deeb6d890e411fd26fc78bef55427e4755c5.zip | |
add more associations for phases
Diffstat (limited to 'models')
| -rw-r--r-- | models/participant_phases.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js index 3780b90..1fe2be2 100644 --- a/models/participant_phases.js +++ b/models/participant_phases.js @@ -300,6 +300,14 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false }, + ability_perk_damage_true: { + type: DataTypes.INTEGER(10).UNSIGNED, + allowNull: false + }, + ability_perk_damage_dealt: { + type: DataTypes.INTEGER(10).UNSIGNED, + allowNull: false + }, ability_aa_damage_true: { type: DataTypes.INTEGER(10).UNSIGNED, allowNull: false |
