summaryrefslogtreecommitdiff
path: root/models/match_stats.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/match_stats.js')
-rw-r--r--models/match_stats.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/models/match_stats.js b/models/match_stats.js
deleted file mode 100644
index 1317cf3..0000000
--- a/models/match_stats.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* jshint indent: 2 */
-
-module.exports = function(sequelize, DataTypes) {
- return sequelize.define('match_stats', {
- id: {
- type: DataTypes.INTEGER(10).UNSIGNED,
- allowNull: false,
- primaryKey: true,
- autoIncrement: true
- }
- }, {
- tableName: 'match_stats'
- });
-};