diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-23 21:11:22 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-23 21:11:22 +0200 |
| commit | 4d86b511a12ba1863fb32354c1c69ac05216c406 (patch) | |
| tree | 2388797e82bf06b64ea8fc8498d673b6549017fa /models/tournament.js | |
| parent | 50181b5b105c9f13d81dd433a3b48eea16be88c6 (diff) | |
| download | orm-4d86b511a12ba1863fb32354c1c69ac05216c406.tar.gz orm-4d86b511a12ba1863fb32354c1c69ac05216c406.zip | |
reimport
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', |
