diff options
| author | Justin Bronn <jbronn@gmail.com> | 2007-09-20 13:13:18 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2007-09-20 13:13:18 +0000 |
| commit | e95fda3e2673494b6f39365d291fc09d1e6eb561 (patch) | |
| tree | bad0c869d3c27214f942250caf0b47e6a0f86532 /django/core/management/sql.py | |
| parent | 7376474260a967e7ad88ee5bf554b4a28e3e7feb (diff) | |
gis: fixed sqlall and sqlcustom commands for this branch.
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@6395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/management/sql.py')
| -rw-r--r-- | django/core/management/sql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/sql.py b/django/core/management/sql.py index 884063f4f0..1757d4d7a0 100644 --- a/django/core/management/sql.py +++ b/django/core/management/sql.py @@ -238,7 +238,7 @@ def sql_indexes(app, style): def sql_all(app, style): "Returns a list of CREATE TABLE SQL, initial-data inserts, and CREATE INDEX SQL for the given module." - return sql_create(app, style) + sql_custom(app) + sql_indexes(app, style) + return sql_create(app, style) + sql_custom(app, style) + sql_indexes(app, style) def sql_model_create(model, style, known_models=set()): """ |
