From a5d6ad498401d187df50c10d9596abd3ff5ea644 Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 27 Jul 2017 10:57:20 +0200 Subject: new item struct wip --- models/participant_stats.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 -- cgit v1.3.1