summaryrefslogtreecommitdiff
path: root/models/participant_phases.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-06-12 15:50:39 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-06-12 15:50:39 +0200
commit5728d5af42984bca49e30528d77c15169e4bcce0 (patch)
tree4b73ae9bf6026d130062e6a5d4ceb11eff0e8fde /models/participant_phases.js
parentc5cd9e53d7413ce960a2170eedb466073175bf80 (diff)
downloadorm-release/2.7.0.tar.gz
orm-release/2.7.0.zip
2.7.0 phase changesrelease/2.7.0
Diffstat (limited to 'models/participant_phases.js')
-rw-r--r--models/participant_phases.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/models/participant_phases.js b/models/participant_phases.js
index c380de3..4d45e02 100644
--- a/models/participant_phases.js
+++ b/models/participant_phases.js
@@ -271,6 +271,18 @@ module.exports = function(sequelize, DataTypes) {
player_damage: {
type: DataTypes.STRING(191),
allowNull: true
+ },
+ draft_position: {
+ type: DataTypes.INTEGER(11),
+ allowNull: true
+ },
+ ban: {
+ type: DataTypes.INTEGER(11),
+ allowNull: true
+ },
+ pick: {
+ type: DataTypes.INTEGER(11),
+ allowNull: true
}
}, {
tableName: 'participant_phases',