"""LabelParticipant Snowflake model.""" from sqlalchemy.orm import Mapped, mapped_column from collaborator import config from collaborator.connectors import snowflake class LabelParticipant(snowflake.BaseModel): """LabelParticipant model.""" __tablename__ = "LABEL_PARTICIPANT" if config.ENVIRONMENT != config.TEST_ENVIRONMENT: __table_args__ = {"schema": config.SNOWFLAKE_SCHEMAS["facts"]} id: Mapped[int] = mapped_column(primary_key=True) uuid: Mapped[str]