diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-24 15:10:08 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-24 15:10:08 +0200 |
| commit | b020ca14986c29146e3ba3e9f04363aea2aaae9d (patch) | |
| tree | 41bf78497bb614870869c397fc96c205ed386ecd | |
| parent | 7c6b4e68793662a103187efca558b60f3edb25cd (diff) | |
| download | orm-b020ca14986c29146e3ba3e9f04363aea2aaae9d.tar.gz orm-b020ca14986c29146e3ba3e9f04363aea2aaae9d.zip | |
add duration to participant_stats
| -rw-r--r-- | models/participant_stats.js | 4 |
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', |
