Hello,
I created a new table called Specials. I've added a new column in my
Collecions class that is a manytomany to my new Specials class. It
looks like the following:
class Specials(models.Model):
type = models.CharField(maxlength=200)
class Collection(models.Model):
special = models.ManyToManyField(Specials)
////////////////
The problem arises when I do a 'python manage.py syncdb'. I would of
thought that command would create my new manytomany table. Something
like 'app_collection_specials'. Do I have to manually create that
table?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---