Hello, I am using reflection for my tables and I have the relationships defined manually which are simply relationship(MyOtherModel). This worked fine when all of the tables were in the same schema (this is Postgres). Now I have moved MyOtherModel into a different schema and now I get "there are no foreign keys linking these tables" error. Both models have their schema specified in the __table_args__. If I specify the primaryjoin on the relation all is well again.
Is this a known behaviour when using foreign keys that cross schema boundaries? I don't necessarily think this is a bug (which is why I didn't include a full code example), but it is a behaviour I didn't expect. -- Jason -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/groups/opt_out.
