Opened 9 years ago
Closed 9 years ago
#27204 closed Bug (fixed)
Clashing m2m intermediate table validation should ignore unmanaged models
| Reported by: | Tim Graham | Owned by: | nobody |
|---|---|---|---|
| Component: | Core (System checks) | Version: | 1.10 |
| Severity: | Normal | Keywords: | |
| Cc: | Berker Peksag | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
The check added in #12810 currently triggers on some unmanaged models in Django's test suite that intentionally use clashing names. I think the correct solution is to ignore unmanaged models.
ERRORS:
model_options.Article.authors: (fields.E340) The field's intermediary table 'model_options_articleref_authors' clashes with the table name of 'model_options.ArticleRef.authors'.
model_options.Article.reviewers: (fields.E340) The field's intermediary table 'model_options_articleref_reviewers' clashes with the table name of 'model_options.ArticleRef.reviewers'.
model_options.ArticleRef.authors: (fields.E340) The field's intermediary table 'model_options_articleref_authors' clashes with the table name of 'model_options.Article.authors'.
model_options.ArticleRef.reviewers: (fields.E340) The field's intermediary table 'model_options_articleref_reviewers' clashes with the table name of 'model_options.Article.reviewers'.
unmanaged_models.C01.mm_a: (fields.E340) The field's intermediary table 'd01' clashes with the table name of 'unmanaged_models.Intermediate'.
unmanaged_models.C02.mm_a: (fields.E340) The field's intermediary table 'd01' clashes with the table name of 'unmanaged_models.C01.mm_a'.
Attachments (1)
Change History (4)
by , 9 years ago
| Attachment: | 27204.diff added |
|---|
comment:2 by , 9 years ago
| Triage Stage: | Accepted → Ready for checkin |
|---|
PR #7224 looks good to me and tests passed on my system. Just left a comment about a potential typo on GitHub.
patch without tests