From dd2a4f706f20b83144e637896c55c550afa7030a Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 14 Jul 2017 18:58:17 +0200 Subject: 2.14.0 rewrite --- models/tournament.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'models/tournament.js') diff --git a/models/tournament.js b/models/tournament.js index 1c1ff32..27de855 100644 --- a/models/tournament.js +++ b/models/tournament.js @@ -16,6 +16,14 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.STRING(191), allowNull: false }, + tag_line_1: { + type: DataTypes.STRING(191), + allowNull: true + }, + tag_line_2: { + type: DataTypes.STRING(191), + allowNull: true + }, status: { type: DataTypes.ENUM('planned','active','finished'), allowNull: false -- cgit v1.3.1