I have restored the database "AdventureWorks2017" into SQL-Server-2017 , which contains a lot of tables such as:
dbo.AWBuildVersion
dbo.DatabaseLog
dbo.ErrorLog
HumanResources.Department
HumanResources.Employee
...
I am using django==2.0.5 , django-pyodbc-azure==2.0.4.1 , pyodbc==4.0.23
I have tried to generate database in tables in django models by using:
python manage.py inspectdb>models.py
but only three dbo.AWBuildVersion , dbo.DatabaseLog , dbo.ErrorLog tables generated in models and someother models that django generated such as AuthGroup , AuthGroupPermissions , DjangoMigrations ,...
What should i have do , to generate all table models?
Thanks.