module.exports = {
tableName: 'lexicon_word_rel',
attributes: {
id: { type: 'number', autoIncrement: true, },
predicate: {
type: 'string',
},
subject: {
model: 'LexiconWord',
},
object: {
model: 'LexiconWord',
},
},
};