summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-12-13 17:23:09 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-12-13 17:23:09 +0100
commit7e4a80db1e7341769056e760b2e3c527b6e9025e (patch)
tree20ec0614975660376db7f19d886e6779b2704515
parent3e04856b75dcdd5cbb9499d17dd7a30245c06698 (diff)
downloadorm-release/2.21.0.tar.gz
orm-release/2.21.0.zip
update player modelrelease/2.21.0
-rw-r--r--models/player.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/models/player.js b/models/player.js
index d4ba62e..ebfba5b 100644
--- a/models/player.js
+++ b/models/player.js
@@ -53,10 +53,6 @@ module.exports = function(sequelize, DataTypes) {
type: "DOUBLE",
allowNull: true
},
- elo: {
- type: "DOUBLE",
- allowNull: true
- },
trueskill_ranked_mu: {
type: "DOUBLE",
allowNull: true
@@ -66,11 +62,11 @@ module.exports = function(sequelize, DataTypes) {
allowNull: true
},
rank_points_ranked: {
- type: DataTypes.INTEGER(11),
+ type: "DOUBLE",
allowNull: true
},
rank_points_blitz: {
- type: DataTypes.INTEGER(11),
+ type: "DOUBLE",
allowNull: true
},
played_ranked: {
@@ -85,6 +81,10 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.INTEGER(11),
allowNull: true
},
+ played_blitz_rounds: {
+ type: DataTypes.INTEGER(11),
+ allowNull: true
+ },
played_aral: {
type: DataTypes.INTEGER(11),
allowNull: true