diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-27 10:57:20 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-27 10:57:20 +0200 |
| commit | a5d6ad498401d187df50c10d9596abd3ff5ea644 (patch) | |
| tree | 269050f079282bd5ffca6537f7c5a440e9c6d0b6 /models | |
| parent | f53e7393d3520b6a81b09ddf95640a1b74743e13 (diff) | |
| download | orm-release/2.15.0.tar.gz orm-release/2.15.0.zip | |
new item struct wiprelease/2.15.0
Diffstat (limited to 'models')
| -rw-r--r-- | models/participant_stats.js | 16 |
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 |
