Haha-Yes/models/joinchannel.js

12 lines
320 B
JavaScript
Raw Normal View History

2019-11-27 12:16:30 +01:00
'use strict';
module.exports = (sequelize, DataTypes) => {
const joinChannel = sequelize.define('joinChannel', {
channelID: DataTypes.BIGINT,
guildID: DataTypes.BIGINT,
message: DataTypes.STRING
}, {});
joinChannel.associate = function(models) {
// associations can be defined here
};
return joinChannel;
2019-11-27 12:16:30 +01:00
};