我如何使用南迁移将数据加载到 Django 的 auth_group 表中?
我想将一些新组添加到 Django 的“auth_group”表中,并且我更喜欢使用 South 将这些数据“迁移”到数据库中。不幸的是,我不确定应该采取哪些步骤来创建迁移文件,然后让它加载我的装置。
有什么想法吗?
I have some new groups that I'd like to add to Django's "auth_group" table and I'd prefer to use South to "migrate" that data into the database. Unfortunately, I'm not sure what steps I should take to create the migration file and then have it load my fixture.
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
South 文档有一个有关装置的部分,其中包含以下示例:
The South docs have a section about fixtures that includes this sample: