Add blacklist and do things

This commit is contained in:
Isaac
2021-04-21 22:02:21 +01:00
parent 353cb5795e
commit a40290141b
9 changed files with 218 additions and 49 deletions

View File

@@ -7,6 +7,10 @@ module.exports = ({ config }, sequelize) => {
primaryKey: true,
allowNull: false,
},
blacklist: {
type: DataTypes.JSON,
defaultValue: [],
},
colour: {
type: DataTypes.STRING,
defaultValue: config.defaults.colour

View File

@@ -23,6 +23,10 @@ module.exports = (client, sequelize) => {
type: DataTypes.CHAR(18),
allowNull: false,
},
first_response: {
type: DataTypes.DATE,
allowNull: true,
},
guild: {
type: DataTypes.CHAR(18),
allowNull: false,