from sqlalchemy import Column from sqlalchemy import Integer from bulkperformancerights.connectors import mysql class Subaccount(mysql.ArtRelationsBaseModel): __tablename__ = 'subaccount' # only need vendor_id and subaccount_id, for now subaccount_id = Column(Integer, primary_key=True) vendor_id = Column(Integer)