summaryrefslogtreecommitdiff
path: root/models/participant_stats.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-24 15:10:08 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-24 15:10:08 +0200
commitb020ca14986c29146e3ba3e9f04363aea2aaae9d (patch)
tree41bf78497bb614870869c397fc96c205ed386ecd /models/participant_stats.js
parent7c6b4e68793662a103187efca558b60f3edb25cd (diff)
downloadorm-b020ca14986c29146e3ba3e9f04363aea2aaae9d.tar.gz
orm-b020ca14986c29146e3ba3e9f04363aea2aaae9d.zip
add duration to participant_stats
Diffstat (limited to 'models/participant_stats.js')
-rw-r--r--models/participant_stats.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js
index 91487d7..6b2c9a9 100644
--- a/models/participant_stats.js
+++ b/models/participant_stats.js
@@ -184,6 +184,10 @@ module.exports = function(sequelize, DataTypes) {
item_sells: {
type: DataTypes.STRING(455),
allowNull: true
+ },
+ duration: {
+ type: DataTypes.INTEGER(5).UNSIGNED,
+ allowNull: false
}
}, {
tableName: 'participant_stats',