姜戈、南方和守护者:迁移



我有两个用户,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,也可以像本文中那样创建信号。

相关内容

  • 没有找到相关文章

最新更新