django-deprecate-fields:此软件包允许弃用模型字段,并允许以向后兼容的方式删除它们

时间:2024-05-23 15:44:00
【文件属性】:

文件名称:django-deprecate-fields:此软件包允许弃用模型字段,并允许以向后兼容的方式删除它们

文件大小:9KB

文件格式:ZIP

更新时间:2024-05-23 15:44:00

Python

Django-弃用栏位 安装 pip install django-deprecate-fields 用法 假设以下简单模型: from django . db import models class MyModel ( models . Model ): field1 = models . CharField () field2 = models . CharField () 为了删除field1 ,应首先将其标记为已弃用: from django . db import models from django_deprecate_fields import deprecate_field class MyModel ( models . Model ): field1 = deprecate_field ( models . CharField ())


【文件预览】:
django-deprecate-fields-master
----django_deprecate_fields()
--------__init__.py(611B)
--------deprecate_field.py(2KB)
----LICENSE(11KB)
----setup.py(2KB)
----README.md(2KB)
----.gitignore(1KB)

网友评论