python manage.py syncdb does not create any tables

I followed the Intro and Launch session to 41:20 where we run python manage.py syncdb to create tables - everything went fine up to that point. However, when I syncdb, here's what I got: bash (blog-venv)vagrant@precise64:/vagrant/projects/microblog$ python manage.py syncdb Creating tables ... Installing custom SQL ... Installing indexes ... Installed 0 object(s) from 0 fixture(s)

Any clue why the syncdb command won't create tables for me?

Sorry You must be a logged in, registered user to answer a question.

Answers

Nevermind. I got distracted by something shiny while editing my settings/base.py file. Forgot to add this line:

INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS

Gotta watch out for those shiny things. Glad you got it sorted!
kennethlove (Staff) on