gpt4 book ai didi

django - 弃用 Django 模型中的字段

转载 作者:行者123 更新时间:2023-12-04 12:45:36 24 4
gpt4 key购买 nike

我正在规范与 Django 项目关联的数据库,并将字段移动到不同的表。作为实现过程的一部分,如果我的同事在我实际删除列之前添加新表后尝试使用旧属性,我想向他们发出弃用警告。

class Asset(Model):
model = models.CharField(max_length=64, blank=True, null=True)
part_number = models.CharField(max_length=32, blank=True, null=True) # this will be a redundant column to be deprecated
company = models.ForeignKey('Company', models.CASCADE, blank=True, null=True) # this will be a redundant column to be deprecated
# other database fields as attributes and class methods

我的理解是我需要添加一些类似 warnings.warn('<field name> is deprecated', DeprecationWarning) 的内容。在类里面的某个地方,但我应该在哪里添加它?

最佳答案

您可以使用 django_deprication.DeprecatedField

pip install django-deprecation

然后像这样使用
class Album(models.Model):
name = DeprecatedField('title')

https://github.com/openbox/django-deprecation

关于django - 弃用 Django 模型中的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43810142/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com