Opened 17 years ago

Closed 17 years ago

#3161 closed enhancement (invalid)

m2m relationship without intermediary model

Reported by: Alejandro Varas Owned by: Adrian Holovaty
Component: Database layer (models, ORM) Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I think is easier to do something like

class Reporter(models.Model):

first_name = models.CharField(maxlength=30)
last_name = models.CharField(maxlength=30)
position = models.ManyToManyField(Article, position)# with that we can say, here is a m2m relationship with an extra field

class Article(models.Model):

headline = models.CharField(maxlength=100)
pub_date = models.DateField()

it is just a suggestion to make it easier and in a shorter way

the idea is not to code the intermediary model

Change History (1)

comment:1 by Jacob, 17 years ago

Resolution: invalid
Status: newclosed

I can't really see an "action" here, so I don't really think this belongs in the ticket tracker; if you've got an idea to discuss, please take it to django-dev.

Note: See TracTickets for help on using tickets.
Back to Top