diff options
| -rw-r--r-- | models/participant_stats.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js index dca0d0e..a8b01ea 100644 --- a/models/participant_stats.js +++ b/models/participant_stats.js @@ -25,6 +25,18 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.STRING(255), allowNull: false }, + item_uses: { + type: DataTypes.STRING(255), + allowNull: false + }, + item_grants: { + type: DataTypes.STRING(255), + allowNull: false + }, + item_sells: { + type: DataTypes.STRING(255), + allowNull: false + }, participant_api_id: { type: DataTypes.CHAR(36), allowNull: false |
