diff options
Diffstat (limited to 'models/participant_stats.js')
| -rw-r--r-- | models/participant_stats.js | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js index cc47d0f..e9fd79e 100644 --- a/models/participant_stats.js +++ b/models/participant_stats.js @@ -25,10 +25,6 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.CHAR(36), allowNull: false }, - farm: { - type: "DOUBLE(6,2)", - allowNull: false - }, kills: { type: DataTypes.INTEGER(5).UNSIGNED, allowNull: true @@ -41,6 +37,10 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.INTEGER(5).UNSIGNED, allowNull: true }, + farm: { + type: DataTypes.INTEGER(8).UNSIGNED, + allowNull: true + }, minion_kills: { type: DataTypes.INTEGER(5).UNSIGNED, allowNull: true @@ -98,79 +98,79 @@ module.exports = function(sequelize, DataTypes) { allowNull: true }, impact_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, objective_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, damage_cp_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, damage_wp_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, sustain_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, farm_lane_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, kill_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, objective_lane_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, farm_jungle_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, peel_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, kill_assist_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, objective_jungle_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, vision_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, heal_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, assist_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, utility_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, synergy_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, build_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true }, offmeta_score: { - type: "DOUBLE(6,5)", + type: "DOUBLE", allowNull: true } }, { |
