symfony - Remove column by doctrine mapping inheritance -
what want optimize database removing unnecessary fields producttable.
my application based on sonata e-commerce. want remove "shortdescription" field product entity. mapping defined in vendor can't remove field.
i tried:
<attribute-override name="rawshortdescription"> <field /> </attribute-override>
and doesnt work.
in doctrine documentation, written there no possible way override column type. mean can't remove field?
is possible remove field defined in vendor?
Comments
Post a Comment