diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-18 14:18:43 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-18 14:18:43 +0000 |
| commit | 0c24c3ee179e76452a7e4fd0523cc225612950e6 (patch) | |
| tree | 97c6a7efbe3f63c8f6cf359a028decb44e6b6b27 | |
| parent | 527609ccc9030e15c906621e9d416b52a1395743 (diff) | |
[1.0.X] Fixed #11221 -- Replaced a reference to a non-existent URL with an actual explanation of sequences. Thanks to Rob Hudson for the report, and SmileyChris for the patch.
Merge of r11053 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/ref/django-admin.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 973bea974f..86553dfe76 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -617,7 +617,11 @@ sqlsequencereset <appname appname ...> Prints the SQL statements for resetting sequences for the given app name(s). -See http://simon.incutio.com/archive/2004/04/21/postgres for more information. +Sequences are indexes used by some database engines to track the next available +number for automatically incremented fields. + +Use this command to generate SQL which will fix cases where a sequence is out +of sync with its automatically incremented field data. startapp <appname> ------------------ |
