I have a set of Django models that are used in two databases (i.e. syncdb was run against two databases from the same app). Both databases are for production services (one database contains on-demand "sandbox" build information and the other contains nightly build information).
The problem is that I want to have one Django app that displays information from both databases. Is that possible in Django? The solution that I've been using so far is to run the app against the nightly build database and use raw SQL to access the sandbox build database, but that's not DRY and just feels wrong.
Thanks.