我有两个用户,mh00h1和mh00h2。我还有一个模型A,它在我的模型中定义了以下内容。py:
class Meta:
permissions = (
('read','read'),
('write','write'),
)
从一个shell,我去设置权限:
>>>> frhde = create modelA instance
>>>> assign_perm('read', mh00h2, frhde)
DoesNotExist: Permission matching query does not exist. Lookup parameters were {'codename': u'read', 'content_type': <ContentType: modelA>}
在我将class Meta
添加到modelA
并确认这一点后,我意识到South
没有迁移我的模型。将read
改变为read2
表明South
没有检测到该改变。
$ /manage.py schemamigration myapp --auto
Running migrations for myapp:
- Nothing to migrate.
- Loading initial data for myapp.
Installed 0 object(s) from 0 fixture(s)
Running migrations for guardian:
- Nothing to migrate.
- Loading initial data for guardian.
Installed 0 object(s) from 0 fixture(s)
我如何进行模式迁移以正确更新数据库,或者有没有更好的方法可以做到这一点,而不需要重做整个数据库?
谢谢。
您可以使用./manage.py syncdb --all
,也可以像本文中那样创建信号。