diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-22 12:05:19 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-22 12:05:19 +0200 |
| commit | 89ef568c88a88d0375c3765b8414cc68d900c4d4 (patch) | |
| tree | 167189e4a1bf6fe63d2ef4c32c364e09ea764ecc | |
| parent | 5cb18f45feb6758c5298df3b255dd6476eb4cd38 (diff) | |
| download | orm-89ef568c88a88d0375c3765b8414cc68d900c4d4.tar.gz orm-89ef568c88a88d0375c3765b8414cc68d900c4d4.zip | |
add item use grant sell
| -rw-r--r-- | models/participant_stats.js | 12 |
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 |
