i have problem with relation new model and many2one
class area_state(models.Model):i want to make relation between model area_state and City2_id
_name = 'area_state'
name_14 = fields.Char(string="Name of Area",store=True,ondelete="restrict")
|||||||||||||||||||
~~~~~~~~~~~
city2_id = fields.Many2one("area_state",string=" work city", ondelete="restrict")
what problem you face here?