summaryrefslogtreecommitdiff
path: root/models/participant.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-10 11:59:44 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-10 11:59:44 +0200
commitb3ba4b3da3bf2d1e7b75ca3d0e68ae7fe08acef4 (patch)
tree5f727426bd4e4844322032f7277a0ef90c066f5d /models/participant.js
parentb3758f0394a392867310ac7d368fda3ce909f7a7 (diff)
downloadorm-b3ba4b3da3bf2d1e7b75ca3d0e68ae7fe08acef4.tar.gz
orm-b3ba4b3da3bf2d1e7b75ca3d0e68ae7fe08acef4.zip
import model changes
Diffstat (limited to 'models/participant.js')
-rw-r--r--models/participant.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/models/participant.js b/models/participant.js
index f0f984d..22381fc 100644
--- a/models/participant.js
+++ b/models/participant.js
@@ -25,6 +25,10 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.CHAR(36),
allowNull: false
},
+ match_api_id: {
+ type: DataTypes.CHAR(36),
+ allowNull: false
+ },
hero_id: {
type: DataTypes.INTEGER(10).UNSIGNED,
allowNull: false
@@ -41,6 +45,10 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.INTEGER(10).UNSIGNED,
allowNull: false
},
+ filter_id: {
+ type: DataTypes.INTEGER(10).UNSIGNED,
+ allowNull: false
+ },
created_at: {
type: DataTypes.TIME,
allowNull: false
@@ -66,7 +74,7 @@ module.exports = function(sequelize, DataTypes) {
allowNull: false
},
skill_tier: {
- type: DataTypes.INTEGER(5).UNSIGNED,
+ type: DataTypes.INTEGER(6),
allowNull: false
},
skin_key: {