1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

[multi-db] Fixed another typo in get_sql_create for pending references.

git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@4123 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jason Pellerin 2006-11-27 17:17:08 +00:00
parent e789a8b0f7
commit 025be905d9

View File

@ -134,8 +134,8 @@ def get_sql_create(app):
builder = model._default_manager.db.get_creation_module().builder
for rel_class, f in pending[model]:
sql = builder._ref_sql(model, rel_class, f, style)
alter_sql.extend(['-- ', str(sql)])
sql = builder.get_ref_sql(model, rel_class, f, style)
alter_sql.append('-- '+ str(sql))
if alter_sql:
final_output.append('-- The following references should be added '
'but depend on non-existent tables:')