summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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',