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.
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.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2010-12-09 00:58:18 -0500
Seen: 148 times
Last updated: Dec 09 '10
Are dump_forum and load_forum supported on 0.7?
How can I get a schema of database models for AskBot?
Is there a specific version of PostgreSQL required?
Question missing from question_revision table!
ManyToMany join table "question_followed_by" is empty.
psycopg2 - support for version 2.4.2
How to delete a question from backend?