Skip to content
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

Merged
merged 2 commits into from
Jan 22, 2025

Conversation

timgraham
Copy link
Collaborator

fixes #216

@timgraham timgraham force-pushed the embedded-model branch 2 times, most recently from 8df7cfe to 87be36a Compare January 19, 2025 02:38
@timgraham timgraham force-pushed the embedded-model branch 2 times, most recently from 8884610 to 05a3ee1 Compare January 21, 2025 02:50
@timgraham timgraham marked this pull request as ready for review January 21, 2025 12:28
Comment on lines +651 to +667
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)
Copy link
Contributor

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?

Copy link
Collaborator Author

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.

Copy link
Contributor

@Jibola Jibola left a 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

@timgraham timgraham merged commit 19ef748 into mongodb:main Jan 22, 2025
9 checks passed
@timgraham timgraham deleted the embedded-model branch January 22, 2025 19:57
@aclark4life
Copy link
Collaborator

@timgraham Just noticed after merging this PR dumpdata returns:

CommandError: Unable to serialize database: 'EmbeddedModelManager' object has no attribute 'using'

Is it OK to add a using method and if so what should it do, given EmbeddedModelManager prevents querying?

@timgraham
Copy link
Collaborator Author

This may be a difficult one: #243.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

prevent embedded models from being created in a separate collection
3 participants