There hasn't database file?
There isn't whole database dump file in the project. I used script "manage.py syncdb" couldn't dump all tables.
Hello there. In addition to syncdb please run
python manage.py migrate
That will complete the database initialization. It is actually described in the manual. There is a link "install/docs" above in the header.
Tables for "askbot" and the login app "django_authopenid" are managed by the database migration system called "South" which provides management command migrate
.
This greatly helps in upgrading the database schema.
Note that if you have other apps under the same migration system you might want to instead specify which application to migrate.
To enter a block of code:
Comments