Django -多表继承-将父表转换为子表



我有这样的模型:

class Property(Model):
...
class Meta:
# not abstract
class Flat(Property):
...
class House(Property):
...

是否可以将已经存在的Property转换为HouseFlat?我知道HouseFlat附加字段在不同的表中,所以这应该可以通过创建这样的行并建立一些关系来实现。

我该怎么做呢?

由于多种原因,创建新的House并删除Property不是一种好方法。其中之一是Property对象可能已经涉及到与其他模型/对象的关系。

这看起来是工作对我:

child = House(property_ptr=property, created=now())
child.save()

作为DRF自定义操作,它看起来像这样:

@action(['POST'], detail=True, url_path='create-child')
def create_child(self, request, pk=None):
property = self.get_object()
if property.get_child():
raise APIException(detail="Blah blah")
_type = request.data.get('type')
try:
ChildModel = Property.get_subtypes_map()[_type]
except KeyError:
raise APIException(detail="Blah blah")
child = ChildModel(property_ptr=property, created=now())
child.save()
return Response({'id':child.id})

PS:您还应该检查模型是否已经有任何子节点。

使用自定义方法?

class Property(...):
...
def convert_to_house(self):
# create a house
house = House.objects.create(
...
)
# delete current property:
self.delete()

相关内容

  • 没有找到相关文章

最新更新