2019-10-06 20:29:42 +02:00
|
|
|
'use strict';
|
|
|
|
module.exports = (sequelize, DataTypes) => {
|
2020-04-30 22:20:07 +02:00
|
|
|
const guildBlacklist = sequelize.define('guildBlacklist', {
|
|
|
|
guildID: DataTypes.BIGINT
|
|
|
|
}, {});
|
|
|
|
guildBlacklist.associate = function(models) {
|
|
|
|
// associations can be defined here
|
|
|
|
};
|
|
|
|
return guildBlacklist;
|
2019-10-06 20:29:42 +02:00
|
|
|
};
|