[sqlalchemy] Re: How to model an odd many-to-many relationship?

2007-03-20 Thread Gaetan de Menten
On 3/20/07, Mike Kent [EMAIL PROTECTED] wrote: I have a many-to-many relationship between two entities, call them A and B. This is easy enough to model in sqlalchemy using Elixir. However, to complicate things, I need an integer column somewhere called 'priority'. In the relationship

[sqlalchemy] Re: How to model an odd many-to-many relationship?

2007-03-20 Thread Mike Kent
Gaetan, Thanks for your response. I'd like to follow up with two questions: 1. I understand what you mean about the current way I'd have to model this relationship in Elixir. This would allow me full control over the intermediate table, which means I could put my 'priority' field in it.