Haha-Yes/models/joinchannel.js

12 lines
320 B
JavaScript
Raw Normal View History

2022-08-14 22:27:46 +02: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;
};