summaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-22 12:05:19 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-22 12:05:19 +0200
commit89ef568c88a88d0375c3765b8414cc68d900c4d4 (patch)
tree167189e4a1bf6fe63d2ef4c32c364e09ea764ecc /models
parent5cb18f45feb6758c5298df3b255dd6476eb4cd38 (diff)
downloadorm-89ef568c88a88d0375c3765b8414cc68d900c4d4.tar.gz
orm-89ef568c88a88d0375c3765b8414cc68d900c4d4.zip
add item use grant sell
Diffstat (limited to 'models')
-rw-r--r--models/participant_stats.js12
1 files changed, 12 insertions, 0 deletions
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