Django

Code

Changeset 7106

Show
Ignore:
Timestamp:
02/11/08 19:01:27 (7 months ago)
Author:
russellm
Message:

Further clarification of help message for ./manage.py sqlall, this time using the same term used in the documentation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management/commands/sqlall.py

    r7105 r7106  
    22 
    33class Command(AppCommand): 
    4     help = "Prints the CREATE TABLE, initial SQL and CREATE INDEX SQL statements for the given model module name(s)." 
     4    help = "Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s)." 
    55 
    66    output_transaction = True