> 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?
James nailed it. You might want to look into django-evolution: http://code.google.com/p/django-evolution/ It provides schema evolution for Django. Also, while I am in the development stages of a new project, I write a small script which clears out my (sqlite3) database, runs "python manage.py syncdb" and starts up the development server. This makes it easy to change the data model around and test it out immediately. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

