From 7d3b3f28e9adfda8b03ff896441ba4d12fa9e653 Mon Sep 17 00:00:00 2001 From: Nasimi Mammadov Date: Thu, 25 Apr 2024 16:12:11 -0700 Subject: [PATCH] Update association-mapping.rst Changed capitalized column names to lowercase for consistency. Other occurances of column names mentioned as lowercase several times at this same page. --- docs/en/reference/association-mapping.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/reference/association-mapping.rst b/docs/en/reference/association-mapping.rst index 6280eee0619..55dfe57671e 100644 --- a/docs/en/reference/association-mapping.rst +++ b/docs/en/reference/association-mapping.rst @@ -1300,8 +1300,8 @@ This is essentially the same as the following, more verbose, mapping: * @var Collection */ #[JoinTable(name: 'User_Group')] - #[JoinColumn(name: 'User_id', referencedColumnName: 'id')] - #[InverseJoinColumn(name: 'Group_id', referencedColumnName: 'id')] + #[JoinColumn(name: 'user_id', referencedColumnName: 'id')] + #[InverseJoinColumn(name: 'group_id', referencedColumnName: 'id')] #[ManyToMany(targetEntity: Group::class)] private Collection $groups; // ... @@ -1333,10 +1333,10 @@ This is essentially the same as the following, more verbose, mapping: - + - +