I have a populated model (There is data in the model I need to preserve/use)named 'FeatureTag' that I need to rename to simply 'Feature'.
class FeatureTag(models.Model):
name = models.CharField(max_length=48, unique=True)
data = models.ManyToManyField(Product)
def __unicode__(self):
return self.name
3 Questions:
Is this something that can be done with Django?
Is this something that can be done with South?
Is there a way to rename the return statement for the model to reflect a different name?
THANKS!!!!
For your 3 questions: