-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prevent the creation of embedded models #227
Conversation
8df7cfe
to
87be36a
Compare
8884610
to
05a3ee1
Compare
def test_embedded_add_field_ignored(self): | ||
"""add_field() and remove_field() ignore EmbeddedModel.""" | ||
new_field = models.CharField(max_length=1, default="a") | ||
new_field.set_attributes_from_name("char") | ||
with connection.schema_editor() as editor, self.assertNumQueries(0): | ||
editor.add_field(Author, new_field) | ||
with connection.schema_editor() as editor, self.assertNumQueries(0): | ||
editor.remove_field(Author, new_field) | ||
|
||
def test_embedded_alter_field_ignored(self): | ||
"""alter_field() ignores EmbeddedModel.""" | ||
old_field = models.CharField(max_length=1) | ||
old_field.set_attributes_from_name("old") | ||
new_field = models.CharField(max_length=1) | ||
new_field.set_attributes_from_name("new") | ||
with connection.schema_editor() as editor, self.assertNumQueries(0): | ||
editor.alter_field(Author, old_field, new_field) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A little confused here. Why would we want them ignored?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While we still don't detect changes to embedded models as part of the parent model, makemigrations
still generates a migration as if the EmbeddedModel has its own collection and we need to ignore that rather than trying to run some change on a nonexistent collection.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for the clarification
05a3ee1
to
19ef748
Compare
@timgraham Just noticed after merging this PR
Is it OK to add a |
This may be a difficult one: #243. |
fixes #216