I want to create a table for my models in my app, apparently the \"python manage.py sqlall myapp\" doesn\'t work
I tried using the \"python manage.py sqlmigrate myapp\",
The sqlmigrate command just prints out the SQL for the migration, it does not run it. You should run migrate to make the changes.
sqlmigrate
migrate
See the Migrations docs for more information about the migration commands.
The sqlall command was removed in Django 1.9 at the same time as syncdb was removed.
sqlall
syncdb