diff options
Diffstat (limited to 'models/stage.js')
| -rw-r--r-- | models/stage.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/models/stage.js b/models/stage.js index 222c130..e7bb294 100644 --- a/models/stage.js +++ b/models/stage.js @@ -35,6 +35,14 @@ module.exports = function(sequelize, DataTypes) { status: { type: DataTypes.ENUM('planned','active','finished'), allowNull: false + }, + phase: { + type: DataTypes.ENUM('pre-season','group','playoffs','finals'), + allowNull: false + }, + rank: { + type: DataTypes.INTEGER(11), + allowNull: false } }, { tableName: 'stage', |
