From 4d86b511a12ba1863fb32354c1c69ac05216c406 Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 23 Aug 2017 21:11:22 +0200 Subject: reimport --- models/tournament.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'models/tournament.js') diff --git a/models/tournament.js b/models/tournament.js index 27de855..81bee88 100644 --- a/models/tournament.js +++ b/models/tournament.js @@ -43,6 +43,18 @@ module.exports = function(sequelize, DataTypes) { region: { type: DataTypes.STRING(191), allowNull: true + }, + owner: { + type: DataTypes.STRING(191), + allowNull: true + }, + registrations_open: { + type: DataTypes.INTEGER(1), + allowNull: true + }, + roster_locked: { + type: DataTypes.INTEGER(1), + allowNull: true } }, { tableName: 'tournament', -- cgit v1.3.1