我想覆盖 django-oscar 地址应用程序。我需要的是删除一些 AbstractAddress 属性(apps.address.abstact_models)。根据这个文档,过程如下 - 创建具有相同名称的本地应用程序并在模型模块中发挥我的作用。不要忘记在文件末尾从默认的 abstract_models 导入 *。然后将此应用程序添加到 installed_apps 中,最后添加 schemamigration --auto 并迁移。
但是 django 没有接受更改。此外,任何覆盖 AbstractAddress 类方法的尝试都会被忽略。为什么?abstract_models 有什么特别之处吗?