How can I loaddata for default list of users,开发者_JS百科 when I 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.
精彩评论