1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Clarified help message for ./manage.py sqlall

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2008-02-12 00:48:37 +00:00
parent 5480a1eecf
commit 9c80d77d7d

View File

@ -1,7 +1,7 @@
from django.core.management.base import AppCommand
class Command(AppCommand):
help = "Prints the CREATE TABLE, initial-data and CREATE INDEX SQL statements for the given model module name(s)."
help = "Prints the CREATE TABLE, initial SQL and CREATE INDEX SQL statements for the given model module name(s)."
output_transaction = True