I'm writing about my problem again, to bring your attention I've made
my long report short:

I'm using django-tagging and django-multilingual applications in my
project. Tagging worked ok until I've added multilingual application
to the
project, and now I don't know if problem is in tagging or in
multilingual.

Here's model class:

class Script(models.Model):
   pub_date = models.DateTimeField()
   slug = models.SlugField(max_length=120)
   tags = TagField()

   class Translation(multilingual.Translation):
       headline = models.CharField(max_length=200)
       description = models.TextField()
       body = models.TextField()

   class Meta:
       ordering = ('-pub_date',)


Then I'm starting manage.py shell command in my project folder and
enter next few lines:

my_tag = Tag.objects.get(name='sometag')
TaggedItem.objects.get_by_model(Script, my_tag)

error appeares - OperationalError: (1054, "Unknown
column'scripts_script.id' in 'on clause'")clause'

all application are at latest svn versions.

Thanks, in advance, for your help.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to