I'm doing something with bidirectional ManyToManyFields, in a project I'm working on, that is resulting in duplicate attempts to create the intermediate tables. I'm perfectly open to suggestions of "You're doing it wrong" if they come with advice on how to fix my problem, without losing the easy Admin insertion of the relationships (without resorting to InLines, which don't seem to play nicely at all with FieldSets). Right now I'm getting around the problem by running syncdb, running dbshell to drop the table it complains about, and rerunning syncdb; repeating until syncdb finishes successfully.
What would make this exceptionally easy, is if there was the option to set 'abstract=True' on second iteration of each of the ManyToManyFields, telling syncdb to not attempt to create it. Thoughts? -- Mike Lindsey -- You received this message because you are subscribed to the Google Groups "Django developers" 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-developers?hl=en.
