"""Payment Group Payment Batch Account model.""" from sqlalchemy import Column from sqlalchemy import DateTime from sqlalchemy import Integer from sqlalchemy import String from moneyhub.models.mysql_base import BaseModel class PaymentGroupPaymentBatchAccount(BaseModel): """Payment Group Payment model.""" __tablename__ = 'payment_group_payment_batch_account' payment_group_payment_batch_id = Column(Integer, nullable=False, primary_key=True) payment_group_payment_account_id = Column(Integer, nullable=False) created_at = Column(DateTime, nullable=True) created_by = Column(String(255), nullable=True) last_modified = Column(DateTime, nullable=True) last_modified_by = Column(String(255), nullable=True)