From 912fbc20b1800a01dbdb61fc01d56392dbf15a7a Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 10 Apr 2017 17:30:00 +0200 Subject: remove per minute stats --- models/global_point.js | 8 -------- models/player_point.js | 8 -------- 2 files changed, 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 -- cgit v1.3.1