I am trying to inherit res.partner module in my custom module and trying to add a simple integer field.
Here is my code
from opener import models,fields
class Associateaccounts_respartner(models,Model);
_inherit='res.partner'
associate_count=fields.Integer(string='# of Associate')
and import my .py file to __init__.py
it is showing me this below error
ProgrammingError: column res_partner.associate_count does not exist