My settings file\'s database section looks like this:
DATABASES = { \'default\': { \'ENGINE\': \'django.db.backends.sqlite3\', \'NAME\': \'C:
From the documentation:
--database DATABASE Specifies the database to introspect. Defaults to default.
--database DATABASE
Specifies the database to introspect. Defaults to default.
default
So you can inspect your second database with:
python manage.py inspectdb --database blah
You cannot inspect both at the same time.