summaryrefslogtreecommitdiff
path: root/models/tournament.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/tournament.js')
-rw-r--r--models/tournament.js12
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',