Django

Code

Changeset 5004

Show
Ignore:
Timestamp:
04/12/07 20:01:57 (2 years ago)
Author:
adrian
Message:

Fixed #3786 -- Fixed sqlinitialdata references in some docs. Thanks, Ramiro Morales

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/django-admin.txt

    r4978 r5004  
    333333Prints the CREATE TABLE and initial-data SQL statements for the given appnames. 
    334334 
    335 Refer to the description of ``sqlinitialdata`` for an explanation of how to 
     335Refer to the description of ``sqlcustom`` for an explanation of how to 
    336336specify initial data. 
    337337 
  • django/trunk/docs/model-api.txt

    r4985 r5004  
    19161916statements have been executed. 
    19171917 
    1918 The SQL files are read by the ``sqlinitialdata``, ``sqlreset``, ``sqlall`` and 
     1918The SQL files are read by the ``sqlcustom``, ``sqlreset``, ``sqlall`` and 
    19191919``reset`` commands in ``manage.py``. Refer to the `manage.py documentation`_ 
    19201920for more information. 
     
    19251925have been created. 
    19261926 
    1927 .. _`manage.py documentation`: http://www.djangoproject.com/documentation/django_admin/#sqlinitialdata-appname-appname 
     1927.. _`manage.py documentation`: http://www.djangoproject.com/documentation/django_admin/#sqlcustom-appname-appname 
    19281928 
    19291929Database-backend-specific SQL data 
  • django/trunk/docs/tutorial01.txt

    r4846 r5004  
    383383 
    384384    * ``python manage.py sqlall polls`` -- A combination of all the SQL from 
    385       the 'sql', 'sqlinitialdata', and 'sqlindexes' commands. 
     385      the 'sql', 'sqlcustom', and 'sqlindexes' commands. 
    386386 
    387387Looking at the output of those commands can help you understand what's actually