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

@@ -45,6 +45,9 @@ class Rolodex(BaseModel):
phone_numbers = relationship("Phone", back_populates="rolodex_entry", cascade="all, delete-orphan")
files = relationship("File", back_populates="owner")
payments = relationship("Payment", back_populates="client")
billing_statements = relationship("BillingStatement", back_populates="customer")
timers = relationship("Timer", back_populates="customer")
time_entries = relationship("TimeEntry", back_populates="customer")
class Phone(BaseModel):