summaryrefslogtreecommitdiff
path: root/models/participant.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-06 13:44:04 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-06 13:44:04 +0200
commit2b5ebe441f83bda836c2dea0d57d7c0aafc6d0e1 (patch)
tree926aec3fdf5728c41fb8016f057284cdd38a5a12 /models/participant.js
parent6d9111d80dc2d42072dc6f978583bdefd357ce5e (diff)
downloadorm-2b5ebe441f83bda836c2dea0d57d7c0aafc6d0e1.tar.gz
orm-2b5ebe441f83bda836c2dea0d57d7c0aafc6d0e1.zip
add hero_id to participant
Diffstat (limited to 'models/participant.js')
-rw-r--r--models/participant.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/models/participant.js b/models/participant.js
index 9c17e74..5779585 100644
--- a/models/participant.js
+++ b/models/participant.js
@@ -25,6 +25,10 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.STRING(191),
allowNull: false
},
+ hero_id: {
+ type: DataTypes.STRING(191),
+ allowNull: false
+ },
created_at: {
type: DataTypes.TIME,
allowNull: true