summaryrefslogtreecommitdiff
path: root/models/match_dimension.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/match_dimension.js
parent37c16ecf9fd64fc7644e82d8619584d0f64d694e (diff)
downloadshrinker-59d82d6c68ae3e75c3a4d9408238c44640e587db.tar.gz
shrinker-59d82d6c68ae3e75c3a4d9408238c44640e587db.zip
regenerate model from releases/2.0.0 db schema
Diffstat (limited to 'models/match_dimension.js')
-rw-r--r--models/match_dimension.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/models/match_dimension.js b/models/match_dimension.js
deleted file mode 100644
index c6c0c45..0000000
--- a/models/match_dimension.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/* jshint indent: 2 */
-
-module.exports = function(sequelize, DataTypes) {
- return sequelize.define('match_dimension', {
- id: {
- type: DataTypes.INTEGER(10).UNSIGNED,
- allowNull: false,
- primaryKey: true,
- autoIncrement: true
- },
- match_id: {
- type: DataTypes.INTEGER(11),
- allowNull: false
- },
- dimension_id: {
- type: DataTypes.INTEGER(11),
- allowNull: false
- },
- stats_id: {
- type: DataTypes.INTEGER(11),
- allowNull: false
- },
- computed_on: {
- type: DataTypes.DATE,
- allowNull: false
- }
- }, {
- tableName: 'match_dimension'
- });
-};