module.exports = {
tableName: 'encyc_entry_property',
attributes: {
id: { type: 'number', autoIncrement: true, },
prop: {
type: 'string',
},
value: {
type: 'string',
allowNull: true
},
order: {
type: 'number',
allowNull: true
},
entry: {
model: 'EncycEntry'
},
},
};