from sqlalchemy import Column from sqlalchemy import Integer from bulkperformancerights.connectors import mysql class ArtistInfo(mysql.ArtRelationsBaseModel): __tablename__ = 'artist_info' # only need these two columns for joins artist_id = Column(Integer, primary_key=True) vendor_id = Column(Integer)