Re: South data migration problem.

2009-12-15 Thread Shawn Milochik
Okay, okay. So I'm still replying to my own post. On the bright side, I figured it out. First point of interest: If I stop referrering to my model with orm.Message, and just use Message (as imported from my app at the top), everything works fine. Second point of interest (discovered AFTER

Re: South data migration problem.

2009-12-15 Thread Shawn Milochik
Sorry to reply to my own post -- I just realized I left out a useful detail: I added a foreign key to the Study model to several tables, and a ManyToMany to Study to two tables. The data migration works flawlessly for the tables where I'm setting the foreign key to the Study instance -- it onl

South data migration problem.

2009-12-15 Thread Shawn Milochik
I added a new ManyToMany field to one of my models. The foreign key is to a model in a different Django application in our project. The migration to add the foreign key works perfectly. I did remember to add the --freeze otherappname.modelname to the command line. I also added the --freeze othe