summaryrefslogtreecommitdiff
path: root/models/tournament.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-08-15 20:07:05 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-08-15 20:07:05 +0200
commit6a1d82c1536a0893156144db4f19d8023a93ee32 (patch)
treec37c5267a3612786d6c994916bdc10a5baa0b122 /models/tournament.js
parent93e91315ee7161b581f7f9e2a7e3fd9f82a2ba2b (diff)
downloadorm-6a1d82c1536a0893156144db4f19d8023a93ee32.tar.gz
orm-6a1d82c1536a0893156144db4f19d8023a93ee32.zip
update participant_phases for blobs
Diffstat (limited to 'models/tournament.js')
-rw-r--r--models/tournament.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/models/tournament.js b/models/tournament.js
index 56ca5cf..27de855 100644
--- a/models/tournament.js
+++ b/models/tournament.js
@@ -16,6 +16,14 @@ 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
@@ -35,14 +43,6 @@ 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',