diff options
Diffstat (limited to 'models/tournament.js')
| -rw-r--r-- | models/tournament.js | 12 |
1 files changed, 12 insertions, 0 deletions
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', |
