Index: site-packages/django/core/management.py =================================================================== --- site-packages/django/core/management.py (revision 3403) +++ site-packages/django/core/management.py (working copy) @@ -264,8 +264,8 @@ get_sql_indexes.args = APP_ARGS def get_sql_all(mod): - "Returns a list of CREATE TABLE SQL and initial-data insert for the given module." - return get_sql_create(mod) + get_sql_initial_data(mod) + "Returns a list of CREATE TABLE SQL, initial-data inserts, and CREATE INDEX SQL for the given module." + return get_sql_create(mod) + get_sql_initial_data(mod) + get_sql_indexes(mod) get_sql_all.help_doc = "Prints the CREATE TABLE and initial-data SQL statements for the given model module name(s)." get_sql_all.args = APP_ARGS