summaryrefslogtreecommitdiff
path: root/django/core/management.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/management.py')
-rw-r--r--django/core/management.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/management.py b/django/core/management.py
index 4a08b1e54d..883cbe1ca7 100644
--- a/django/core/management.py
+++ b/django/core/management.py
@@ -598,6 +598,7 @@ def syncdb(verbosity=1, interactive=True):
# Install custom SQL for the app (but only if this
# is a model we've just created)
for app in models.get_apps():
+ app_name = app.__name__.split('.')[-2]
for model in models.get_models(app):
if model in created_models:
custom_sql = get_custom_sql_for_model(model)