Re: Django 1.2b multidatabase + manytomany relationship

2010-03-26 Thread Russell Keith-Magee
On Wed, Mar 24, 2010 at 6:16 PM, mbdtsmh wrote: > Hi All, still trying to get my head around the multi db stuff in 1.2 > release. > > Here is my problem that I have hit upon. > > I have a model in my default db... > > class Set1(models.Model): >    create_date = models.DateTimeField(auto_now_add='

Django 1.2b multidatabase + manytomany relationship

2010-03-24 Thread mbdtsmh
Hi All, still trying to get my head around the multi db stuff in 1.2 release. Here is my problem that I have hit upon. I have a model in my default db... class Set1(models.Model): create_date = models.DateTimeField(auto_now_add='True') last_update = models.DateTimeField(auto_now='True',