Skip to content

Commit

Permalink
fixup! Add owner column to BankAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
FestplattenSchnitzel committed May 17, 2024
1 parent 7af98f4 commit c83d574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycroft/model/finance.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def check_split_on_update(mapper, connection, target):
class BankAccount(IntegerIdModel):
name: Mapped[str255]
bank: Mapped[str255]
owner: Mapped[str255 | None]
owner: Mapped[str255]
account_number: Mapped[str] = mapped_column(String(10))
routing_number: Mapped[str] = mapped_column(String(8))
iban: Mapped[str] = mapped_column(String(34))
Expand Down

0 comments on commit c83d574

Please sign in to comment.