summaryrefslogtreecommitdiff
path: root/docs/django-admin.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-01-25 00:53:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-01-25 00:53:30 +0000
commitdfee6b328eec9ff1e4f24b5ad16982ac11211153 (patch)
tree97f7c907701fda6db886249c1bb9f91472bce1e5 /docs/django-admin.txt
parentde60cf04d0120b6ea05e674bdda483ee79760b9b (diff)
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
Diffstat (limited to 'docs/django-admin.txt')
-rw-r--r--docs/django-admin.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index a5b952b5e5..310e8dff0e 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -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
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 ...]
--------------------------------------
@@ -380,7 +382,7 @@ Example usage::
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,
and `2` is verbose output.