我的食谱实体:
/**
* @ORM\ManyToMany(targetEntity="Category", inversedBy="recipes")
*/
private $categories;
我的类别实体:
/**
* @ORM\ManyToMany(targetEntity="Recipe", inversedBy="categories")
* @ORM\JoinTable(name="recipe_category")
*/
private $recipes;
好的,这是来自http://www.youtube.com/watch?v=kPrgoe3Jrjw&feature=related。
有了这两个拥有方,一切都很好。但是 cli 给出了错误:'名为 recipe_category 的表已经存在。有谁知道最佳实践如何?