From 67a4f83c42819c90bc2fccefffb0bdb2ce7c0e44 Mon Sep 17 00:00:00 2001 From: Gaurav Kumar Date: Mon, 5 Sep 2016 14:53:49 +0530 Subject: [PATCH] Update associations.rst article_tag will give error that article_tag table doesn't exist in the database. --- en/orm/associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/orm/associations.rst b/en/orm/associations.rst index 4e437556de..20d6199f08 100644 --- a/en/orm/associations.rst +++ b/en/orm/associations.rst @@ -506,7 +506,7 @@ syntax:: public function initialize(array $config) { $this->belongsToMany('Tags', [ - 'joinTable' => 'article_tag', + 'joinTable' => 'articles_tags', ]); } }