Hi,
I'm fairly new to Django and I'm very much still in the learning process.
I'm using Django 1.10.3 on a project and have just added some new models. When I run the server and enter a URL to visit one of my views, I get an error, an excerpt of which is shown below:
File "/home/jja/testenv3.5/lib/python3.5/site-packages/django/db/backends/sqlite3/base.py", line 337, in execute
return Database.Cursor.execute(self, query, params)
sqlite3.OperationalError: no such table: siggy_siggytemplate
I would like to look at the SQL tables and it looks like 'python manage.py sql' is a command that could do the job, but whichh is no longer available. Is this correct?
Is there an alternative command that I can run?\
I would like to look at the tables to see if I can figure out why the table 'siggy_siggytemplate' was not generated. BTW, my project is 'siggy' and my model is 'SiggyTemplate' so I think this would cause generation of the table
'siggy_siggytemplate'.
Jim Anderson