diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-14 10:02:14 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-14 10:02:14 +0200 |
| commit | 3bc8688c6900242621bb90303c6db12c24e5ef96 (patch) | |
| tree | b076ca277725c028bf7af1ea7d6abd047794c707 /models/participant_stats.js | |
| parent | f0a70b032b502bac34a08535d0d686f82373c468 (diff) | |
| download | orm-3bc8688c6900242621bb90303c6db12c24e5ef96.tar.gz orm-3bc8688c6900242621bb90303c6db12c24e5ef96.zip | |
reimport
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 } }, { |
