On Aug 22, 2005, at 7:21 AM, Maniac wrote:
But I thought that it would be very useful to have core SQL output from 'django-admin init', not only per-project SQL.
It's actually very simple; all the "init" does is execute the following commands:
django-admin sql core django-admin sql auth django-admin sqlinitialdata auth django-admin sqlinitialdata coreIt's given a single command because if you do any of those commands in the wrong order it won't work.
Jacob