from netforce.model import Model, fields class Address(Model): _inherit="address" _fields={ "patient_id": fields.Many2One("clinic.patient","Patient"), } Address.register()