This commit is contained in:
HotSwapp
2025-08-16 10:05:42 -05:00
parent 0347284556
commit ae4484381f
15 changed files with 3966 additions and 77 deletions

View File

@@ -65,4 +65,7 @@ class File(BaseModel):
separation_agreements = relationship("SeparationAgreement", back_populates="file", cascade="all, delete-orphan")
payments = relationship("Payment", back_populates="file", cascade="all, delete-orphan")
notes = relationship("FileNote", back_populates="file", cascade="all, delete-orphan")
documents = relationship("Document", back_populates="file", cascade="all, delete-orphan")
documents = relationship("Document", back_populates="file", cascade="all, delete-orphan")
billing_statements = relationship("BillingStatement", back_populates="file", cascade="all, delete-orphan")
timers = relationship("Timer", back_populates="file", cascade="all, delete-orphan")
time_entries = relationship("TimeEntry", back_populates="file", cascade="all, delete-orphan")