From b020ca14986c29146e3ba3e9f04363aea2aaae9d Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 24 Apr 2017 15:10:08 +0200 Subject: add duration to participant_stats --- models/participant_stats.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'models') 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', -- cgit v1.3.1