"""Product Store Model.""" from sqlalchemy import Column, ForeignKey, Integer from timed_release.connectors import sql class ProductStore(sql.base_model): """Table definition for product_store table.""" __tablename__ = 'product_store' product_id = Column( Integer, ForeignKey('product_live_time.product_id'), primary_key=True, nullable=False) store_id = Column(Integer, primary_key=True, nullable=False)