summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-05-14 06:43:40 -0400
committerTim Graham <timograham@gmail.com>2016-05-14 06:43:40 -0400
commitcb4be0262a491b4d13b2f9defe28940d31b2200e (patch)
tree8d143ef78ffe8104e0db4111d0da8a70ca64a7a4
parent3642835bde667dfaad0a5fea7242a289dd993701 (diff)
Removed unused code in AlterField.database_forwards().
This code added in 107c9f545346149b03354678f53a177709edaced isn't used after 4ce7a6bc84c68406e39f48550434faeef3277eba.
-rw-r--r--django/db/migrations/operations/fields.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/django/db/migrations/operations/fields.py b/django/db/migrations/operations/fields.py
index 7f20b19a06..041f8a605b 100644
--- a/django/db/migrations/operations/fields.py
+++ b/django/db/migrations/operations/fields.py
@@ -1,7 +1,6 @@
from __future__ import unicode_literals
from django.db.models.fields import NOT_PROVIDED
-from django.utils import six
from django.utils.functional import cached_property
from .base import Operation
@@ -200,14 +199,6 @@ class AlterField(FieldOperation):
from_model = from_state.apps.get_model(app_label, self.model_name)
from_field = from_model._meta.get_field(self.name)
to_field = to_model._meta.get_field(self.name)
- # If the field is a relatedfield with an unresolved rel.to, just
- # set it equal to the other field side. Bandaid fix for AlterField
- # migrations that are part of a RenameModel change.
- if from_field.remote_field and from_field.remote_field.model:
- if isinstance(from_field.remote_field.model, six.string_types):
- from_field.remote_field.model = to_field.remote_field.model
- elif to_field.remote_field and isinstance(to_field.remote_field.model, six.string_types):
- to_field.remote_field.model = from_field.remote_field.model
if not self.preserve_default:
to_field.default = self.field.default
schema_editor.alter_field(from_model, from_field, to_field)