module.exports = {
tableName: 'lexicon_word_ref',
attributes: {
id: { type: 'number', autoIncrement: true, },
meaning: {
type: 'string',
allowNull: true
},
example: {
type: 'string',
allowNull: true
},
source: {
model: 'LexiconSource'
},
words: {
collection: 'LexiconWord',
through: 'LexiconWordRefWord',
via: 'ref'
},
},
};