summaryrefslogtreecommitdiff
path: root/models/hero_core_stats.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/hero_core_stats.js')
-rw-r--r--models/hero_core_stats.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/models/hero_core_stats.js b/models/hero_core_stats.js
index 1accc6a..bc709af 100644
--- a/models/hero_core_stats.js
+++ b/models/hero_core_stats.js
@@ -16,7 +16,7 @@ module.exports = function(sequelize, DataTypes) {
type: DataTypes.TIME,
allowNull: true
},
- patch_version: {
+ series: {
type: DataTypes.STRING(191),
allowNull: false
},
@@ -61,6 +61,9 @@ module.exports = function(sequelize, DataTypes) {
allowNull: false
}
}, {
- tableName: 'hero_core_stats'
+ tableName: 'hero_core_stats',
+ timestamps: false,
+ underscored: true,
+ freezeTableName: true
});
};