diff options
| author | Tomer Chachamu <tomer.chachamu@google.com> | 2018-03-12 13:48:29 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-03-12 13:49:36 -0400 |
| commit | c12745f6826280acb637f9c43cd2c7c2ef3d8761 (patch) | |
| tree | 6e9b9ac086dcc6b093be695924b076c68d9a0852 | |
| parent | 3c71fb3909d4fdf6691712dfe84d7b7b8e9fcc35 (diff) | |
Fixed typo in django/db/backends/base/schema.py.
| -rw-r--r-- | django/db/backends/base/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/base/schema.py b/django/db/backends/base/schema.py index 4885cf7837..bd07385672 100644 --- a/django/db/backends/base/schema.py +++ b/django/db/backends/base/schema.py @@ -460,7 +460,7 @@ class BaseDatabaseSchemaEditor: # Reset connection if required if self.connection.features.connection_persists_old_columns: self.connection.close() - # Remove all deferred statements referencing the deleted table. + # Remove all deferred statements referencing the deleted column. for sql in list(self.deferred_sql): if isinstance(sql, Statement) and sql.references_column(model._meta.db_table, field.column): self.deferred_sql.remove(sql) |
