我在models.py中有:
class Flashcard(models.Model):
english = models.TextField()
slavonic = models.TextField()
urls.py 引用 models.py 试图让 python manage.py syncdb 接上 models.py:
import models
但是,python manage.py syncdb 不会导致创建*_flashcards
表:
$ python manage.py syncdb && sqlite3 flashcards.db
No fixtures found.
SQLite version 3.7.13 2012-06-11 02:05:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
auth_group auth_user_user_permissions
auth_group_permissions django_admin_log
auth_message django_content_type
auth_permission django_session
auth_user django_site
auth_user_groups
sqlite>
我应该做些什么不同的事情来获得一张flashcards_flashcards
桌子?管理界面完美地接受了它,直到显示模型的“添加条目”页面。
谢谢,