this is not an Ofbiz Entity so you have a couple of choices.
if you not a production server, in development just add the fields to
the entity.
if you in productions then use the best practices for changing entities.
section "Deprecating entities" at
https://cwiki.apache.org/OFBADMIN/ofbiz-contributors-best-practices.html


snehal sent the following on 9/13/2011 7:21 AM:
> Hi,
> 
> This is my entity definition 
> 
> 
> 
>       <entity entity-name="PartRevPlantRelation"
> package-name="com.prorigo.dataloader" title="Entity for PartRevPlantRelation
> information">
>               <field name="partRevId" type="numeric"></field>
>               <field name="plantId" type="numeric"></field>
>               <field name="startDate" type="date"></field>
>               <field name="qtyInOrder" type="numeric"></field>
>               <field name="lastOrderDelivDate" type="date"></field>
>               <field name="firstOrderDelivDate" type="date"></field>
>               <prim-key field="partRevId"/>
>               <prim-key field="plantId"/>
>               <relation type="one" 
> fk-name="FK_PART_REV_PLANT_RELATION_PART_REV_ID"
> rel-entity-name="PartRevision">
>                       <key-map field-name="partRevId" 
> rel-field-name="partRevisionId"/>
>               </relation>
>               <relation type="one" 
> fk-name="FK_PART_REV_PLANT_RELATION_PLANT_ID"
> rel-entity-name="Plant">
>                       <key-map field-name="plantId" />
>               </relation>
>       </entity>
> 
> 
> I want to add one more column called testQty. In this table.
> 
> 
> 
> --
> View this message in context: 
> http://ofbiz.135035.n4.nabble.com/adding-new-column-in-table-tp3809890p3810205.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
> 

Reply via email to