Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditor

This commit is contained in:
Markus Holtermann 2016-05-06 02:13:32 +02:00
parent c6499d532d
commit deeffde84a
3 changed files with 3 additions and 5 deletions

View file

@ -1628,6 +1628,7 @@ class SchemaTests(TransactionTestCase):
"column": editor.quote_name(column),
"to_table": editor.quote_name(table),
"to_column": editor.quote_name(model._meta.auto_field.column),
"deferrable": connection.ops.deferrable_sql(),
}
)
editor.alter_field(model, get_field(Author, CASCADE, field_class=ForeignKey), field)