Django 模型重命名
我有一个名为“FeatureTag”的填充模型(模型中有我需要保留/使用的数据),我需要将其重命名为“Feature”。
class FeatureTag(models.Model):
name = models.CharField(max_length=48, unique=True)
data = models.ManyToManyField(Product)
def __unicode__(self):
return self.name
3 个问题:
这是可以用 Django 完成的事情吗?
这是南能做的事吗?
有没有办法重命名模型的返回语句以反映不同的名称?
谢谢!!!!
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!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您的 3 个问题:
For your 3 questions: