Fixed bug in VegetableProperties

This commit is contained in:
dbroqua 2018-10-06 17:24:11 +02:00
parent abffdc9438
commit dcc78c725b
2 changed files with 6 additions and 5 deletions

View File

@ -181,9 +181,9 @@ class Vegetables {
'Type',
'Pictures',
{
model: models.vegetableProperties,
as: 'Properties',
include: ['Property']
model: models.vegetableProperties,
as: 'Properties',
include: ['Property']
}
]
})

View File

@ -17,9 +17,10 @@ module.exports = (sequelize, DataTypes) => {
as: 'Vegetable',
foreignKey: 'id'
})
vegetableProperties.hasOne(models.properties, {
vegetableProperties.belongsTo(models.properties, {
as: 'Property',
foreignKey: 'id'
foreignKey: 'propertyId',
targetKey: 'id'
})
}
return vegetableProperties