Fixed #53 -- Thanks, Dobbes!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@162 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
b1c543d091
commit
683755118f
|
@ -131,7 +131,8 @@ def get_sql_delete(mod):
|
|||
else:
|
||||
output.append("DROP TABLE %s_%s;" % (opts.db_table, f.name))
|
||||
output.append("DELETE FROM packages WHERE label = '%s';" % mod._MODELS[0]._meta.app_label)
|
||||
output.append("DELETE from content_types WHERE package = '%s';" % mod._MODELS[0]._meta.app_label)
|
||||
output.append("DELETE FROM auth_permissions WHERE package = '%s';" % mod._MODELS[0]._meta.app_label)
|
||||
output.append("DELETE FROM content_types WHERE package = '%s';" % mod._MODELS[0]._meta.app_label)
|
||||
return output[::-1] # Reverse it, to deal with table dependencies.
|
||||
get_sql_delete.help_doc = "Prints the DROP TABLE SQL statements for the given app(s)."
|
||||
get_sql_delete.args = APP_ARGS
|
||||
|
|
Loading…
Reference in New Issue