diff options
| -rw-r--r-- | models/global_point.js | 8 | ||||
| -rw-r--r-- | models/participant_stats.js | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/models/global_point.js b/models/global_point.js index 632560d..85be061 100644 --- a/models/global_point.js +++ b/models/global_point.js @@ -36,6 +36,14 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.BIGINT, allowNull: true }, + role_id: { + type: DataTypes.BIGINT, + allowNull: true + }, + region_id: { + type: DataTypes.BIGINT, + allowNull: true + }, played: { type: DataTypes.BIGINT, allowNull: true diff --git a/models/participant_stats.js b/models/participant_stats.js index 6986bc7..91487d7 100644 --- a/models/participant_stats.js +++ b/models/participant_stats.js @@ -174,15 +174,15 @@ module.exports = function(sequelize, DataTypes) { allowNull: true }, item_uses: { - type: DataTypes.STRING(191), + type: DataTypes.STRING(455), allowNull: true }, item_grants: { - type: DataTypes.STRING(191), + type: DataTypes.STRING(455), allowNull: true }, item_sells: { - type: DataTypes.STRING(191), + type: DataTypes.STRING(455), allowNull: true } }, { |
