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