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:17:09 +0200 |
| commit | f50fa763571e94cd8892e3f11fbf90d640cb8223 (patch) | |
| tree | ebe664567d47bab56dd9cc7b828efaf2551626a7 | |
| parent | 3768321a02a1fffe00522474576053c3c4eba1c1 (diff) | |
| download | orm-f50fa763571e94cd8892e3f11fbf90d640cb8223.tar.gz orm-f50fa763571e94cd8892e3f11fbf90d640cb8223.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', |
