Is there any trick to this? On my MySQL box I have 2 logical databases, let's say people and places, and each database has lots of different tables.
Is there any way to create a ForeignKey from a table in one database to the other? In the MySQL prompt this is no problem, you just write dbname.tablename.colname and everything works just fine.
But this gives me sass in SQLAlchemy, saying it can't find the towns table:
Column('town_id', Integer, ForeignKey('places.towns.id'))
Is there any way to make this work?