diff options
Diffstat (limited to 'models/participant_stats.js')
| -rw-r--r-- | models/participant_stats.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js index bae73ba..352f43e 100644 --- a/models/participant_stats.js +++ b/models/participant_stats.js @@ -17,48 +17,48 @@ module.exports = function(sequelize, DataTypes) { allowNull: true }, participant_api_id: { - type: DataTypes.BIGINT, + type: DataTypes.STRING(191), allowNull: false }, kills: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, deaths: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, assists: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, minion_kills: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, jungle_kills: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, non_jungle_minion_kills: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, crystal_mine_captures: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, gold_mine_captures: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, kraken_captures: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, turret_captures: { type: DataTypes.INTEGER(5).UNSIGNED, - allowNull: false + allowNull: true }, gold: { type: DataTypes.INTEGER(8).UNSIGNED, |
