mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-3293: XML Mappings disallow disabling column prefix for embeddables #4073
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Sep 1, 2014).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user @ocramius:
As of DDC-3292, it is not possible to disable the column prefix for embeddables in XML mappings. This example shows that
"false"is used as column prefix:<embedded name="address" class="Address" column-prefix="false" />A possible solution is to use something like:
<embedded name="address" class="Address" use-column-prefix="false" />or
<embedded name="address" class="Address" use-column-prefix="true" />@doctrinebot commented on GitHub (Sep 1, 2014):
falseis assigned tocolumn-prefix@doctrinebot commented on GitHub (Jan 8, 2015):
Issue was closed with resolution "Fixed"