summaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/participant_stats.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js
index 004deb1..fd1dd31 100644
--- a/models/participant_stats.js
+++ b/models/participant_stats.js
@@ -168,18 +168,34 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.STRING(191),
allowNull: true
},
+ new_items: {
+ type: "BLOB",
+ allowNull: true
+ },
item_uses: {
type: DataTypes.STRING(455),
allowNull: true
},
+ new_item_uses: {
+ type: "BLOB",
+ allowNull: true
+ },
item_grants: {
type: DataTypes.STRING(455),
allowNull: true
},
+ new_item_grants: {
+ type: "BLOB",
+ allowNull: true
+ },
item_sells: {
type: DataTypes.STRING(455),
allowNull: true
},
+ new_item_sells: {
+ type: "BLOB",
+ allowNull: true
+ },
duration: {
type: DataTypes.INTEGER(5).UNSIGNED,
allowNull: false