summaryrefslogtreecommitdiff
path: root/models/tournament.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-05-16 11:01:23 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-05-16 11:01:23 +0200
commit86007965a98e6682efcb4f34ba8d23420aac617b (patch)
tree8e8eadc2e573d3aa26473bcabb26471f207f6b25 /models/tournament.js
parent3948fe1ad7e651a0f6c7e6922f1f159518e37dd1 (diff)
downloadorm-86007965a98e6682efcb4f34ba8d23420aac617b.tar.gz
orm-86007965a98e6682efcb4f34ba8d23420aac617b.zip
participant_phase changes
Diffstat (limited to 'models/tournament.js')
-rw-r--r--models/tournament.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/models/tournament.js b/models/tournament.js
index 5722d02..1c1ff32 100644
--- a/models/tournament.js
+++ b/models/tournament.js
@@ -31,6 +31,10 @@ module.exports = function(sequelize, DataTypes) {
end: {
type: DataTypes.TIME,
allowNull: true
+ },
+ region: {
+ type: DataTypes.STRING(191),
+ allowNull: true
}
}, {
tableName: 'tournament',