I need to create a two-column index. I have declared:
field_A= fields.Float(string='A', index=True)
field_B= fields.Float(string='B', index=True)
But that creates two independent indices. I would like to obtain a composite index. Any idea how I could achieve this?