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

[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
This commit is contained in:
Jason Pellerin 2006-07-19 18:58:03 +00:00
parent d67abd9307
commit 9b84da453e

View File

@ -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):