summaryrefslogtreecommitdiff
path: root/models/hero_stats.js
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-03-31 15:14:12 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-03-31 15:14:12 +0200
commit59d82d6c68ae3e75c3a4d9408238c44640e587db (patch)
tree9aa61cd679bed9829c0637c5832265c59a77d031 /models/hero_stats.js
parent37c16ecf9fd64fc7644e82d8619584d0f64d694e (diff)
downloadprocessor-59d82d6c68ae3e75c3a4d9408238c44640e587db.tar.gz
processor-59d82d6c68ae3e75c3a4d9408238c44640e587db.zip
regenerate model from releases/2.0.0 db schema
Diffstat (limited to 'models/hero_stats.js')
-rw-r--r--models/hero_stats.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/models/hero_stats.js b/models/hero_stats.js
index 514f141..c79ea4f 100644
--- a/models/hero_stats.js
+++ b/models/hero_stats.js
@@ -33,6 +33,9 @@ module.exports = function(sequelize, DataTypes) {
allowNull: false
}
}, {
- tableName: 'hero_stats'
+ tableName: 'hero_stats',
+ timestamps: false,
+ underscored: true,
+ freezeTableName: true
});
};