Full-stack mobile app for pole dance championship management. Backend: FastAPI + SQLAlchemy 2 (async) + SQLite (dev) / PostgreSQL (prod) - JWT auth with refresh token rotation - Championship CRUD with Instagram Graph API sync (APScheduler) - Registration flow with status management - Participant list publish with Expo push notifications - Alembic migrations, pytest test suite Mobile: React Native + Expo (TypeScript) - Auth gate: pending approval screen for new members - Championships list & detail screens - Registration form with status tracking - React Query + Zustand + React Navigation v6 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
import uuid
|
|
from datetime import datetime, timezone
|
|
|
|
from sqlalchemy import Boolean, DateTime, ForeignKey, Text
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
|
|
|
from app.database import Base
|
|
|
|
|
|
def _now() -> datetime:
|
|
return datetime.now(timezone.utc)
|
|
|
|
|
|
class ParticipantList(Base):
|
|
__tablename__ = "participant_lists"
|
|
|
|
id: Mapped[uuid.UUID] = mapped_column(primary_key=True, default=uuid.uuid4)
|
|
championship_id: Mapped[uuid.UUID] = mapped_column(
|
|
ForeignKey("championships.id", ondelete="CASCADE"), unique=True, nullable=False
|
|
)
|
|
published_by: Mapped[uuid.UUID] = mapped_column(
|
|
ForeignKey("users.id"), nullable=False
|
|
)
|
|
is_published: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False)
|
|
published_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True))
|
|
notes: Mapped[str | None] = mapped_column(Text)
|
|
created_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=_now)
|
|
updated_at: Mapped[datetime] = mapped_column(
|
|
DateTime(timezone=True), default=_now, onupdate=_now
|
|
)
|
|
|
|
championship: Mapped["Championship"] = relationship(back_populates="participant_list")
|
|
organizer: Mapped["User"] = relationship()
|