Ticket #3786: sqlinitialdata.diff

File sqlinitialdata.diff, 936 bytes (added by Ramiro Morales, 17 years ago)
  • ./docs/tutorial01.txt

    old new  
    382382      statements for this app.
    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
    388388happening under the hood.
  • ./docs/django-admin.txt

    old new  
    329329
    330330Prints the CREATE TABLE and initial-data SQL statements for the given appnames.
    331331
    332 Refer to the description of ``sqlinitialdata`` for an explanation of how to
     332Refer to the description of ``sqlcustom`` for an explanation of how to
    333333specify initial data.
    334334
    335335sqlclear [appname appname ...]
Back to Top