diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-27 13:30:46 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-27 13:30:46 +0200 |
| commit | d6e50e21163c90b7263c9ed1b09a5a39073f7006 (patch) | |
| tree | 9943dc74b64cf615f7098b87426bfd94db216d69 /models/tournament.js | |
| parent | f53e7393d3520b6a81b09ddf95640a1b74743e13 (diff) | |
| download | orm-release/2.14.0.tar.gz orm-release/2.14.0.zip | |
reimportrelease/2.14.0
Diffstat (limited to 'models/tournament.js')
| -rw-r--r-- | models/tournament.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/models/tournament.js b/models/tournament.js index 27de855..56ca5cf 100644 --- a/models/tournament.js +++ b/models/tournament.js @@ -16,14 +16,6 @@ module.exports = function(sequelize, DataTypes) { type: DataTypes.STRING(191), allowNull: false }, - tag_line_1: { - type: DataTypes.STRING(191), - allowNull: true - }, - tag_line_2: { - type: DataTypes.STRING(191), - allowNull: true - }, status: { type: DataTypes.ENUM('planned','active','finished'), allowNull: false @@ -43,6 +35,14 @@ module.exports = function(sequelize, DataTypes) { region: { type: DataTypes.STRING(191), allowNull: true + }, + tag_line_1: { + type: DataTypes.STRING(255), + allowNull: true + }, + tag_line_2: { + type: DataTypes.STRING(255), + allowNull: true } }, { tableName: 'tournament', |
