I have a database, financials that has models created in django. In addition, it has other tables that were created for a python script that uses MySQLdb, and thus not in django. The python script needs the django tables to work. In addition, the django tables needs to use the tables created outside of django to work.

How would I import these tables to use in django, or do I need to re-write them in django? In addition, it is potentially 'un-safe' to have a database that combines django and non-django tables?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Django doesn't care what created your tables, and there are no issues with running them side-by-side. If you need access to the "non-Django" tables via the Django ORM, you could run inspectdb as described in the documentation on using legacy databases.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.