"""Reference SAP Profit Center model.""" from sqlalchemy import Column from sqlalchemy import Integer from sqlalchemy import String from moneyhub.models.mysql_base import BaseModel class ReferenceSapProfitCenter(BaseModel): """Reference SAP Profit Center model.""" __tablename__ = 'reference_sap_profit_center' reference_sap_profit_center_id = Column(Integer, primary_key=True) company_code = Column(String(10), nullable=False) profit_center = Column(String(8), nullable=True) business_group = Column(String(3), nullable=True)