使用外表列的唯一约束

时间:2017-05-11 12:30:05

标签: symfony doctrine constraints

假设以下表格和列:

公司(id)

product_kind(id,company_id)

产品(id,product_kind_id,ean)

产品种类属于公司:

@ORM \多对一(targetEntity ="的appbundle \实体\公司&#34)

产品属于某种产品类型:

@ORM \多对一(targetEntity ="的appbundle \实体\ ProductKind&#34)

(product.product_kind_id.company_id,product.ean)必须是唯一的。换句话说:每个产品在整个公司都有独特的优势。

如何确保此关系是唯一的?

0 个答案:

没有答案