我正在尝试使用post_syncdb
信号在创建表格后立即向数据库添加一些数据。
signals.post_syncdb.connect(init)
然后在init函数中,我想设置权限,所以我使用
ct = ContentType.objects.get(app_label='news', model='Article')
Permission(name='Approve articles', codename='can_approve_article', content_type=ct)
但如果我放弃所有表格并运行syncdb
,我会得到
...
File "...\base\functions\init.py", line 11, in init
ct = ContentType.objects.get(app_label='news', model='Article')
...
django.contrib.contenttypes.models.DoesNotExist: ContentType matching query does not exist.
我做过的一些测试:
syncdb
之外尝试此代码,它可以正常工作。syncdb
创建没有此代码的所有表,它也可以正常工作,然后添加此代码并运行syncdb而不必进行任何更改。非常感谢任何提示!
答案 0 :(得分:7)
将其添加到init函数的开头:
from django.contrib.contenttypes.management import update_all_contenttypes
update_all_contenttypes() # make sure all content types exist