Re: Many-to-many through multiple tables

2009-11-28 Thread t0ster
Could you post your models.py code here? On Nov 28, 1:10 pm, Jonathan wrote: > This may be more of a general database design question, but I want to > come up with something that works with Django's ORM. > > I have four bits of information that I want to link together. Generic > packages, package

Re: Many-to-many through multiple tables

2009-11-28 Thread t0ster
00) >     businessversion = models.ForeignKey(BusinessVersion) >     lifecyclestage = models.ForeignKey(LifecycleStage) >     group = models.ForeignKey(Group) >     packageversions = models.ManyToManyField(PackageVersion) > > class Stream(models.Model): >     name = models