module.exports = {
tableName: 'biblio_event_text',
attributes: {
id: { type: 'number', autoIncrement: true, },
role: {
type: 'string'
},
order: {
type: 'number'
},
event: {
model: 'BiblioEvent',
},
text: {
model: 'BiblioText',
},
},
};