Commit 4415f453 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Further clarification of help message for ./manage.py sqlall, this time using...

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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 9c80d77d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
from django.core.management.base import AppCommand

class Command(AppCommand):
    help = "Prints the CREATE TABLE, initial SQL and CREATE INDEX SQL statements for the given model module name(s)."
    help = "Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s)."

    output_transaction = True