Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我 syncdb 时,如何为默认用户列表加载数据?
我做什么。
手动创建用户。
dumpdata为auth.users桌子做一个。
dumpdata
auth.users
做完同步数据库后,为转储的用户做一个loaddata。
loaddata
它不是完全“自动”的,因为从长远来看,完全自动是一个糟糕的主意。大多数syncdb操作都涉及数据库更改,这些更改还需要您保留一些遗留数据,可能会删除表,并执行其他“模式迁移”步骤。每次都涉及一些特别的事情。因此,“完全自动化”很少能奏效。
syncdb