问题 I'm trying for several hours now to do the silliest migration using South, but somehow, I've been failing miserably.. I'm trying to migrate to Sorl-Thumbnail. Here is my transitional model: class Deal(models.Model): image = ImageWithThumbsField(upload_to='deal_images',null=True,blank=True,sizes=(200,150),)) new_image = ImageField(upload_to='new_deal_images',default='deal_images/thumb_deal_noimg.gif') And my foward migration it's this so far: def forwards(self, orm): for deal in orm.Deal