From 2b5ebe441f83bda836c2dea0d57d7c0aafc6d0e1 Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 6 Apr 2017 13:44:04 +0200 Subject: add hero_id to participant --- models/participant.js | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.3.1