我想用 django.contrib.comments.models.Comment 的代理替换自制的评论对象。
我修改了我的 comments/models.py,将 django.contrib.comments 添加到我的 installed_apps 并将 COMMENTS_APPS 设置为我的评论应用程序的名称。
运行 python manage.py syncdb(我使用 South)时,我在“未同步”应用程序中得到“django.contrib.comments”,因此未创建相应的表。
如何创建与 django.contrib.comments 相关的表?
谢谢
朱利安