module.exports = {
tableName: 'lexicon_word_media',
attributes: {
id: { type: 'number', autoIncrement: true, },
uuid: {
type: 'string',
},
fname: {
type: 'string',
},
size: {
type: 'number',
},
type: {
type: 'string',
},
word: {
model: 'LexiconWord',
},
},
};