summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-12-29 15:35:03 -0500
committerTim Graham <timograham@gmail.com>2014-12-29 15:37:15 -0500
commit79645529e7ce03a7eef1e51e7058a9880f83efb5 (patch)
treed21330380965f4477b22fc9985ffa47cf983205d /django
parent1702bc52cc20ed0729893177fc8f4391b4b3183c (diff)
Revert "[1.7.x] Fixed #23938 -- Added migration support for m2m to concrete fields and vice versa"
This reverts commit 1702bc52cc20ed0729893177fc8f4391b4b3183c. This doesn't work on stable/1.7.x because #23844 wasn't backported and we're not willing to do so because it's a large change.
Diffstat (limited to 'django')
-rw-r--r--django/db/migrations/autodetector.py157
1 files changed, 77 insertions, 80 deletions
diff --git a/django/db/migrations/autodetector.py b/django/db/migrations/autodetector.py
index b0720dd51f..b323182df9 100644
--- a/django/db/migrations/autodetector.py
+++ b/django/db/migrations/autodetector.py
@@ -778,71 +778,73 @@ class MigrationAutodetector(object):
Fields that have been added
"""
for app_label, model_name, field_name in sorted(self.new_field_keys - self.old_field_keys):
- self._generate_added_field(app_label, model_name, field_name)
-
- def _generate_added_field(self, app_label, model_name, field_name):
- field = self.new_apps.get_model(app_label, model_name)._meta.get_field_by_name(field_name)[0]
- # Fields that are foreignkeys/m2ms depend on stuff
- dependencies = []
- if field.rel and field.rel.to:
- # Account for FKs to swappable models
- swappable_setting = getattr(field, 'swappable_setting', None)
- if swappable_setting is not None:
- dep_app_label = "__setting__"
- dep_object_name = swappable_setting
+ field = self.new_apps.get_model(app_label, model_name)._meta.get_field_by_name(field_name)[0]
+ # Fields that are foreignkeys/m2ms depend on stuff
+ dependencies = []
+ if field.rel and field.rel.to:
+ # Account for FKs to swappable models
+ swappable_setting = getattr(field, 'swappable_setting', None)
+ if swappable_setting is not None:
+ dep_app_label = "__setting__"
+ dep_object_name = swappable_setting
+ else:
+ dep_app_label = field.rel.to._meta.app_label
+ dep_object_name = field.rel.to._meta.object_name
+ dependencies = [(dep_app_label, dep_object_name, None, True)]
+ if getattr(field.rel, "through", None) and not field.rel.through._meta.auto_created:
+ dependencies.append((
+ field.rel.through._meta.app_label,
+ field.rel.through._meta.object_name,
+ None,
+ True
+ ))
+ # You can't just add NOT NULL fields with no default or fields
+ # which don't allow empty strings as default.
+ if (not field.null and not field.has_default() and
+ not isinstance(field, models.ManyToManyField) and
+ not (field.blank and field.empty_strings_allowed)):
+ field = field.clone()
+ field.default = self.questioner.ask_not_null_addition(field_name, model_name)
+ self.add_operation(
+ app_label,
+ operations.AddField(
+ model_name=model_name,
+ name=field_name,
+ field=field,
+ preserve_default=False,
+ ),
+ dependencies=dependencies,
+ )
else:
- dep_app_label = field.rel.to._meta.app_label
- dep_object_name = field.rel.to._meta.object_name
- dependencies = [(dep_app_label, dep_object_name, None, True)]
- if getattr(field.rel, "through", None) and not field.rel.through._meta.auto_created:
- dependencies.append((
- field.rel.through._meta.app_label,
- field.rel.through._meta.object_name,
- None,
- True,
- ))
- # You can't just add NOT NULL fields with no default or fields
- # which don't allow empty strings as default.
- preserve_default = True
- if (not field.null and not field.has_default() and
- not isinstance(field, models.ManyToManyField) and
- not (field.blank and field.empty_strings_allowed)):
- field = field.clone()
- field.default = self.questioner.ask_not_null_addition(field_name, model_name)
- preserve_default = False
- self.add_operation(
- app_label,
- operations.AddField(
- model_name=model_name,
- name=field_name,
- field=field,
- preserve_default=preserve_default,
- ),
- dependencies=dependencies,
- )
+ self.add_operation(
+ app_label,
+ operations.AddField(
+ model_name=model_name,
+ name=field_name,
+ field=field,
+ ),
+ dependencies=dependencies,
+ )
def generate_removed_fields(self):
"""
Fields that have been removed.
"""
for app_label, model_name, field_name in sorted(self.old_field_keys - self.new_field_keys):
- self._generate_removed_field(app_label, model_name, field_name)
-
- def _generate_removed_field(self, app_label, model_name, field_name):
- self.add_operation(
- app_label,
- operations.RemoveField(
- model_name=model_name,
- name=field_name,
- ),
- # We might need to depend on the removal of an
- # order_with_respect_to or index/unique_together operation;
- # this is safely ignored if there isn't one
- dependencies=[
- (app_label, model_name, field_name, "order_wrt_unset"),
- (app_label, model_name, field_name, "foo_together_change"),
- ],
- )
+ self.add_operation(
+ app_label,
+ operations.RemoveField(
+ model_name=model_name,
+ name=field_name,
+ ),
+ # We might need to depend on the removal of an
+ # order_with_respect_to or index/unique_together operation;
+ # this is safely ignored if there isn't one
+ dependencies=[
+ (app_label, model_name, field_name, "order_wrt_unset"),
+ (app_label, model_name, field_name, "foo_together_change"),
+ ],
+ )
def generate_altered_fields(self):
"""
@@ -866,30 +868,25 @@ class MigrationAutodetector(object):
old_field_dec = self.deep_deconstruct(old_field)
new_field_dec = self.deep_deconstruct(new_field)
if old_field_dec != new_field_dec:
- if (not isinstance(old_field, models.ManyToManyField) and
+ preserve_default = True
+ if (old_field.null and not new_field.null and not new_field.has_default() and
not isinstance(new_field, models.ManyToManyField)):
- preserve_default = True
- if (old_field.null and not new_field.null and not new_field.has_default() and
- not isinstance(new_field, models.ManyToManyField)):
- field = new_field.clone()
- new_default = self.questioner.ask_not_null_alteration(field_name, model_name)
- if new_default is not models.NOT_PROVIDED:
- field.default = new_default
- preserve_default = False
- else:
- field = new_field
- self.add_operation(
- app_label,
- operations.AlterField(
- model_name=model_name,
- name=field_name,
- field=field,
- preserve_default=preserve_default,
- )
- )
+ field = new_field.clone()
+ new_default = self.questioner.ask_not_null_alteration(field_name, model_name)
+ if new_default is not models.NOT_PROVIDED:
+ field.default = new_default
+ preserve_default = False
else:
- self._generate_removed_field(app_label, model_name, field_name)
- self._generate_added_field(app_label, model_name, field_name)
+ field = new_field
+ self.add_operation(
+ app_label,
+ operations.AlterField(
+ model_name=model_name,
+ name=field_name,
+ field=field,
+ preserve_default=preserve_default,
+ )
+ )
def _generate_altered_foo_together(self, operation):
option_name = operation.option_name