summaryrefslogtreecommitdiff
path: root/models/participant_stats.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-08 18:17:30 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-08 18:17:30 +0200
commit8265e92db6dd52e211bac01d7b2eac55d319e734 (patch)
treefb4d3caeb8a5e4e56af36b858362a48fcd97c7e6 /models/participant_stats.js
parent0a7dc1e9597396edc5a099240bf8aef024946219 (diff)
downloadorm-8265e92db6dd52e211bac01d7b2eac55d319e734.tar.gz
orm-8265e92db6dd52e211bac01d7b2eac55d319e734.zip
regenerate
Diffstat (limited to 'models/participant_stats.js')
-rw-r--r--models/participant_stats.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/models/participant_stats.js b/models/participant_stats.js
index 352f43e..b402276 100644
--- a/models/participant_stats.js
+++ b/models/participant_stats.js
@@ -16,8 +16,13 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.TIME,
allowNull: true
},
+ final: {
+ type: DataTypes.INTEGER(1),
+ allowNull: false,
+ defaultValue: "1"
+ },
participant_api_id: {
- type: DataTypes.STRING(191),
+ type: DataTypes.CHAR(36),
allowNull: false
},
kills: {