Fixed #3302 -- Added small note to docs/django-admin.txt about ordering of initial-data SQL files

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4425 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-01-25 00:53:30 +00:00
parent de60cf04d0
commit dfee6b328e
1 changed files with 3 additions and 1 deletions

View File

@ -253,6 +253,8 @@ files are piped directly into the database after all of the models'
table-creation statements have been executed. Use this SQL hook to populate table-creation statements have been executed. Use this SQL hook to populate
tables with any necessary initial records, SQL functions or test data. tables with any necessary initial records, SQL functions or test data.
Note that the order in which the SQL files are processed is undefined.
sqlreset [appname appname ...] sqlreset [appname appname ...]
-------------------------------------- --------------------------------------
@ -380,7 +382,7 @@ Example usage::
django-admin.py syncdb --verbosity=2 django-admin.py syncdb --verbosity=2
Verbosity determines the amount of notification and debug information that Verbosity determines the amount of notification and debug information that
will be printed to the console. '0' is no output, '1' is normal output, will be printed to the console. '0' is no output, '1' is normal output,
and `2` is verbose output. and `2` is verbose output.