I'm writing my second FastAPI project, which is more complicated then the first one. It has many-to-many relations. I created proxy table for this relations. But then when I thought about the main table I stopped. I have many-to-many field:
sa.Column('ingredients')
And my question is what type is this field? sa.Integer()? Is it enough or should I add something else to this field?