adding columns to a many to many

2009-05-10 Thread mickey
Hi So i have something like t his in my model: article = models.ManyToManyField(Publication) But i'd like to add a few additoinal columns like date_published on the generated many to many table, how do i do that? Thanks. --~--~-~--~~~---~--~~ You received this

Re: adding columns to a many to many

2009-05-11 Thread Karen Tracey
On Mon, May 11, 2009 at 2:28 AM, mickey wrote: > > Hi > > So i have something like t his in my model: > > article = models.ManyToManyField(Publication) > > But i'd like to add a few additoinal columns like date_published on > the generated many to many table, how do i do that? > > Thanks. > Use