module.exports = {
tableName: 'getty_entity',
attributes: {
id: { type: 'number', autoIncrement: true, },
code: {
type: 'number',
unique: true,
},
terms: {
collection: 'GettyEntityTerm',
collection: 'GettyTerm',
through: 'GettyEntityTerm',
via: 'entityId'
}
},
};