On Dec 8, 2007 8:36 PM, Greg <[EMAIL PROTECTED]> wrote: > 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?
Yes. Once syncdb has initially set up the tables for a model, running it again will never issue any changes of any sort to the DB. Not for changes to columns, not for added/dropped columns, not for added/dropped/changed many-to-many relationships. As soon as the model has been set up the first time, syncdb will never look at it again. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

