1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

magic-removal: Refs #1508 -- Fixed stuff up in check in for r2565.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2567 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2006-03-27 10:08:34 +00:00
parent 24da07329d
commit 01babca674

View File

@ -374,7 +374,7 @@ get_sql_indexes.args = APP_ARGS
def get_sql_all(app):
"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)
return get_sql_create(app) + get_sql_initial_data(app) + get_sql_indexes(app)
get_sql_all.help_doc = "Prints the CREATE TABLE, initial-data and CREATE INDEX SQL statements for the given model module name(s)."
get_sql_all.args = APP_ARGS