diff options
| author | Jason Pellerin <jpellerin@gmail.com> | 2006-07-19 18:58:03 +0000 |
|---|---|---|
| committer | Jason Pellerin <jpellerin@gmail.com> | 2006-07-19 18:58:03 +0000 |
| commit | 9b84da453e3525734c38b7608e38b408b34a3b21 (patch) | |
| tree | b4df000e5578e90f100a364f2c19e8e86cc3b031 | |
| parent | d67abd93077f49a6df2d4263fb3350361054aa81 (diff) | |
[multi-db] Removed reverse() from drop table output.
git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3387 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/ansi/sql.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/ansi/sql.py b/django/db/backends/ansi/sql.py index 98e15d44d5..f0d7f84562 100644 --- a/django/db/backends/ansi/sql.py +++ b/django/db/backends/ansi/sql.py @@ -272,8 +272,6 @@ class SchemaBuilder(object): (style.SQL_KEYWORD('DROP TABLE'), style.SQL_TABLE(qn(f.m2m_db_table()))), db.connection)) - # Reverse it, to deal with table dependencies. - output.reverse() return output def get_initialdata(self, model): |
