In pure SQL I can declare multiple foreign keys like:
ALTER TABLE available_routes ADD FOREIGN KEY (client_id, site_id) REFERENCES sites(client_id, id);
I am trying to create model, that have some constrains. But can't understand how to do it:
mytable = Table ('mytable', metadata,
#...
Column('client_id', ForeignKey("clients.id"))
)