summaryrefslogtreecommitdiff
path: root/models/match.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/match.js')
-rw-r--r--models/match.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/models/match.js b/models/match.js
index 18f179a..8372d97 100644
--- a/models/match.js
+++ b/models/match.js
@@ -26,9 +26,9 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.STRING(191),
allowNull: false
},
- patch_version: {
+ series: {
type: DataTypes.STRING(191),
- allowNull: false
+ allowNull: true
},
shard_id: {
type: DataTypes.STRING(191),
@@ -43,6 +43,7 @@ module.exports = function(sequelize, DataTypes) {
allowNull: false
}
}, {
- tableName: 'match'
+ tableName: 'match',
+ timestamps: false
});
};