diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-02-25 16:49:21 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-02-25 16:49:21 +0100 |
| commit | 30bbd43c24b0fb50b89ed373dac8c27352dfcbdb (patch) | |
| tree | dcf43b2aa91432506d9d9239f8613f74fd9e60ca | |
| parent | a9cd551494d1d91e4264c89f5012d99ac6b56982 (diff) | |
| download | orm-30bbd43c24b0fb50b89ed373dac8c27352dfcbdb.tar.gz orm-30bbd43c24b0fb50b89ed373dac8c27352dfcbdb.zip | |
| -rw-r--r-- | models/player.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/models/player.js b/models/player.js index ef215d9..c5bfbeb 100644 --- a/models/player.js +++ b/models/player.js @@ -73,6 +73,14 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(11), allowNull: true }, + played_ranked_5v5: { + type: DataTypes.INTEGER(11), + allowNull: true + }, + played_casual_5v5: { + type: DataTypes.INTEGER(11), + allowNull: true + }, played_blitz: { type: DataTypes.INTEGER(11), allowNull: true |
