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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -