From 89ef568c88a88d0375c3765b8414cc68d900c4d4 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 22 Apr 2017 12:05:19 +0200 Subject: add item use grant sell --- models/participant_stats.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'models') 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 -- cgit v1.3.1