Haha-Yes/models/logstats.js
loicbersier 320ac3a3f0 Some channel logging (W.I.P)
Signed-off-by: loicbersier <loic.bersier1@gmail.com>
2020-04-30 22:34:54 +02:00

11 lines
No EOL
275 B
JavaScript

'use strict';
module.exports = (sequelize, DataTypes) => {
const LogStats = sequelize.define('LogStats', {
guild: DataTypes.BIGINT,
channel: DataTypes.BIGINT
}, {});
LogStats.associate = function(models) {
// associations can be defined here
};
return LogStats;
};