我的设置文件的数据库部分如下所示:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'C:/Users/Desktop/test.db'
},
'blah':{
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'C:/Users/Desktop/test2.db'
}
}
当我运行命令python manage.py inspectdb > models.py
时,我只得到为默认数据库生成的模型,而不是第二个。我怎样才能生成两个模型?