diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-10 17:30:00 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-10 17:30:00 +0200 |
| commit | 912fbc20b1800a01dbdb61fc01d56392dbf15a7a (patch) | |
| tree | 644795d6c73c2a6a17f6995780c4b5e9da229a92 /models | |
| parent | 14edf9d8247f94b63008d97018ced4d6093366cd (diff) | |
| download | orm-912fbc20b1800a01dbdb61fc01d56392dbf15a7a.tar.gz orm-912fbc20b1800a01dbdb61fc01d56392dbf15a7a.zip | |
remove per minute stats
Diffstat (limited to 'models')
| -rw-r--r-- | models/global_point.js | 8 | ||||
| -rw-r--r-- | models/player_point.js | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/models/global_point.js b/models/global_point.js index afe9b45..3f44f96 100644 --- a/models/global_point.js +++ b/models/global_point.js @@ -20,14 +20,6 @@ module.exports = function(sequelize, DataTypes) { type: "DOUBLE(8,2)", allowNull: false }, - gold_per_min: { - type: "DOUBLE(8,2)", - allowNull: false - }, - cs_per_min: { - type: "DOUBLE(8,2)", - allowNull: false - }, series_id: { type: DataTypes.INTEGER(11), allowNull: false diff --git a/models/player_point.js b/models/player_point.js index bf5552b..29054dc 100644 --- a/models/player_point.js +++ b/models/player_point.js @@ -112,14 +112,6 @@ module.exports = function(sequelize, DataTypes) { type: "DOUBLE(5,5)", allowNull: true }, - cs_per_min: { - type: "DOUBLE(7,5)", - allowNull: true - }, - kills_per_min: { - type: "DOUBLE(6,5)", - allowNull: true - }, impact_score: { type: DataTypes.INTEGER(3).UNSIGNED, allowNull: true |
