2020-02-24 14:31:52 +01:00
|
|
|
'use strict';
|
|
|
|
module.exports = (sequelize, DataTypes) => {
|
2020-04-30 22:20:07 +02:00
|
|
|
const whitelistWord = sequelize.define('whitelistWord', {
|
|
|
|
word: DataTypes.STRING,
|
|
|
|
serverID: DataTypes.BIGINT
|
|
|
|
}, {});
|
|
|
|
whitelistWord.associate = function(models) {
|
|
|
|
// associations can be defined here
|
|
|
|
};
|
|
|
|
return whitelistWord;
|
2020-02-24 14:31:52 +01:00
|
|
|
};
|