如何在 django init_data 上创建默认用户?
当我syncdb时,如何加载默认用户列表的数据?
How can I loaddata for default list of users, when I syncdb ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我syncdb时,如何加载默认用户列表的数据?
How can I loaddata for default list of users, when I syncdb ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我做什么。
手动创建用户。
为
auth.users
表执行dumpdata
执行完syncdb后,为转储的用户执行
loaddata
。它不是完全“自动”的,因为从长远来看,完全自动是一个糟糕的主意。大多数
syncdb
操作都涉及数据库更改,这些更改还需要您保留一些旧数据,可能会删除表,并执行其他“架构迁移”步骤。每次都会涉及一些特别的事情。因此,“完全自动化”很少能取得良好效果。What I do.
Create users manually.
Do a
dumpdata
for theauth.users
table.After doing syncdb, do a
loaddata
for the dumped users.It's not totally "automatic" because -- in the long run -- totally automatic is a terrible idea. Most
syncdb
operations involve database changes that also require you preserve some legacy data, perhaps dropping tables, and doing other "schema migration" steps. Each time it involves something special. So "total automation" rarely works out well.