summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-07-27 10:57:20 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-07-27 10:57:20 +0200
commita5d6ad498401d187df50c10d9596abd3ff5ea644 (patch)
tree269050f079282bd5ffca6537f7c5a440e9c6d0b6
parentf53e7393d3520b6a81b09ddf95640a1b74743e13 (diff)
downloadorm-a5d6ad498401d187df50c10d9596abd3ff5ea644.tar.gz
orm-a5d6ad498401d187df50c10d9596abd3ff5ea644.zip
new item struct wiprelease/2.15.0
-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