> class Box(models.Model): > serial = models.CharField(max_length=25, primary_key=True) > > class Meta: > db_table = u'boxes.box' > verbose_name_plural = "Boxes"
Well, I should add that inspecting the raw sql reveals that django is using this kind of query: 'select field from "boxes.box"' instead of: 'select field from boxes.box'. This prevents the namespace resolution --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---