I put a table 'tbl_external' into my Odoo database. This table haven't been created using a model. Is just a table.
Now I want to inherits its id.
If I used a model, I write:
_inherits = {'tbl_external': 'id_tbl_external'}
id_tbl_external = fields.Many2one('tbl_external', 'External Table')
How I can do in this case?
Thanks!