如何在学说

时间:2017-04-02 22:14:34

标签: doctrine unique relation

在学说中我有很多ToMany协会

Document:
manyToMany:
        tags:
          targetEntity: Tag
          inversedBy: tags
          joinTable:
              name: documents_tags
Tag:
manyToMany:
        documents:
          targetEntity: Document
          mappedBy: tags

并创建一个新表documents_tags,其中document_id+tag_id上有一个主键,每个表上都有普通键。但我想对两列tag_iddocument_id有一个唯一的键约束。我怎么能实现呢?

1 个答案:

答案 0 :(得分:0)

好的我可以自己回答,当我编辑我的问题时它向我透露:当然,主键已经是独一无二的了,所以它已经工作了。