Django 模型重命名

发布于 2024-10-26 20:25:43 字数 407 浏览 0 评论 0原文

我有一个名为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只等公子 2024-11-02 20:25:43

对于您的 3 个问题:

  • 是的,您可以重命名 Django 模型,只需确保修复对它的所有引用即可。
  • 是的,你可以和南一起做这件事。您可能需要编辑 South 生成的文件 - 因此请务必检查生成的代码。
  • 您想要覆盖什么功能以及为什么?您的用例是什么?

For your 3 questions:

  • Yes, you can rename your Django's model, just make sure to fix all the references to it.
  • Yes, you can do this with South. You might need to edit the files generated by south - so make sure to check the code that is generated.
  • What function do you want to override and why? What is your use case?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文