diff options
Diffstat (limited to 'models/match_stats.js')
| -rw-r--r-- | models/match_stats.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/models/match_stats.js b/models/match_stats.js new file mode 100644 index 0000000..1317cf3 --- /dev/null +++ b/models/match_stats.js @@ -0,0 +1,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' + }); +}; |
