diff options
Diffstat (limited to 'models/match_dimension.js')
| -rw-r--r-- | models/match_dimension.js | 30 |
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' - }); -}; |
