endpoint setup

This commit is contained in:
exolonConfidental
2026-02-08 11:18:47 +05:30
parent 8fb3b7cf67
commit a77788fc47
33 changed files with 932 additions and 352 deletions

View File

@@ -63,3 +63,9 @@ class Property(Base):
back_populates="property",
uselist=False,
)
insurance_records = relationship(
"InsuranceDetails",
back_populates="property",
cascade="all, delete-orphan"
)