Re: Splitting models.py into a package

2007-11-07 Thread Darryl Ross
Hi Daniel, > class Foo(models.Model) > some_field = models.CharField(max_length=200) > class Meta: > app_label = 'app' Thanks for that, as soon as I added the app_label to the Meta class it started working. Regards -D signature.asc Description: OpenPGP digital signature

Re: Splitting models.py into a package

2007-11-07 Thread [EMAIL PROTECTED]
On Nov 7, 8:41 pm, Darryl Ross <[EMAIL PROTECTED]> wrote: > Note: Resending as this hasn't shown up on the list after 3 hours. > Appologies if it does decide to make an appearance. > > Hey All, > > I have an app that has quite a few models in it, so I am trying to split > it out into a