What for "python manage.py sqlall"?

$ python manage.py sqlall yourappname

prints out all the database tables associated with yourapp.

Note that it is not actually create the tables.

To commit, use

$ python manage.py syncdb

Leave a comment