summaryrefslogtreecommitdiff
path: root/models/match_stats.js
blob: 1317cf3ed26917cd321079049cf1d2c6b5d893fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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'
  });
};