I modified a class in one of my modules:
> class res_partner(osv.osv): > _name = 'res.partner' > _inherit = 'res.partner' > _columns = { > 'property_my_property': fields.property( > 'my.property', > type='many2one', > relation='my.property', > string="My Property", > method=True, > view_load=True, > group_name="My Properties"), > } > res_partner() and I remove all reference to old class in xml file. And then I upgraded the module but when I check on Partner Properties it gives error saying it cannot find my previous object. When I look in ir_model_fields I see an entry for the old object. And I delete this row, uninstall module and reinstall module but this old row keeps coming back. How can I get rid of this error? Gerry _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman/listinfo/tinyerp-users