How to get all table names in a Django app?
I use the following code but it doesn\'t get the tables created by ManyToManyField
from django.db.models
The simplest method should be to use the database reflection APIs in django to go directly to the database. The drawback to this is that it won't give you any tables before you've synced.