Ticket #11221: 11221.diff
File 11221.diff, 755 bytes (added by , 15 years ago) |
---|
-
docs/ref/django-admin.txt
611 611 612 612 Prints the SQL statements for resetting sequences for the given app name(s). 613 613 614 See http://simon.incutio.com/archive/2004/04/21/postgres for more information. 614 Sequences are indexes used by some database engines to track the next available 615 number for automatically incremented fields (set up using the ``SERIAL`` 616 keyword in the table creation statement). 615 617 618 Use this command to generate SQL which will fix cases where a sequence is out 619 of sync with its automatically incremented field data. 620 616 621 startapp <appname> 617 622 ------------------ 618 623