Commit 4a817440 authored by Jakob Moser's avatar Jakob Moser
Browse files

Add tablename to Person

parent 06b53773
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -19,6 +19,8 @@ class Person(Base):
      means the person owes us money).
    """

    __tablename__ = "person"

    name: Mapped[str]
    cl_account_name: Mapped[str] = mapped_column(unique=True)
    balance_cents: int = 0