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 -0600
Seen: 192 times
Last updated: Dec 09 '10
null value in column "description"
How to correctly sync database with Askbot app?
psycopg2 - support for version 2.4.2
What database tables do I need to delete, to remove Askbot?
Creating a Table in Askbot Database
Is there temp information I could delete from the database periodically?
ManyToMany join table "question_followed_by" is empty.