"""Payment Allocation Ledger Adjustment model.""" from sqlalchemy import Column from sqlalchemy import Integer from moneyhub.models.mysql_base import BaseModel class PaymentAllocationLedgerAdjustment(BaseModel): """Payment Allocation Ledger Adjustment model.""" __tablename__ = 'payment_allocation_ledger_adjustment' payment_allocation_ledger_adjustment_id = Column(Integer, nullable=False, primary_key=True) payment_allocation_id = Column(Integer, nullable=False) ledger_adjustment_applied_id = Column(Integer, nullable=False)