Thanks, that clears things up. I thought that if I sent it as a  
string rather than the class I could wait to define it until later.

-Mikeal

On Jun 7, 2006, at 8:30 PM, Malcolm Tredinnick wrote:

>
> Hi Mikael,
>
> On Wed, 2006-06-07 at 19:41 -0700, Mikeal Rogers wrote:
>> Sure, Here you go,
>>
>> class BItem(models.Model):
>>
>>      #Date stuff
>>      created_on = models.DateTimeField(auto_now_add=True)
>>      last_edited_on = models.DateTimeField(auto_now=True)
>>      #Last Edited By
>>      last_edited_by = models.ForeignKey(User)
>>
>>      #B information
>>      name = models.CharField(maxlength=1000)
>>      description = models.CharField(maxlength=6000)
>>      brewer = models.ForeignKey('BRItem')
>>      ingredients = models.ManyToManyField('IngredientItem')
>
> This is the problem line. You don't have an IngredientItem model in  
> this
> file. If your have defined IngredientItem elsewhere, then just  
> import it
> at the top of your file and reference it directly (remove the  
> quotes and
> just use IngredientItem there). Otherwise, work out what you  
> renamed the
> class to.
>
> If I comment out this line, "manage.py sqlall ..." works for this
> example.
>
> Cheers,
> Malcolm
>
>
>
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to