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' }); };