import uuid from datetime import datetime, timezone from sqlalchemy import String, Boolean, Integer, DateTime, func from sqlalchemy import Uuid from sqlalchemy.orm import Mapped, mapped_column, relationship from app.database import Base class User(Base): __tablename__ = "users" id: Mapped[uuid.UUID] = mapped_column( Uuid(as_uuid=True), primary_key=True, default=uuid.uuid4, ) email: Mapped[str] = mapped_column(String(255), unique=True, nullable=False) password_hash: Mapped[str] = mapped_column(String(255), nullable=False) name: Mapped[str | None] = mapped_column(String(100), nullable=True) plan: Mapped[str] = mapped_column(String(20), default="free") max_queries: Mapped[int] = mapped_column(Integer, default=5) is_active: Mapped[bool] = mapped_column(Boolean, default=True) email_verified: Mapped[bool] = mapped_column(Boolean, default=False) verification_code: Mapped[str | None] = mapped_column(String(6), nullable=True) verification_code_expires: Mapped[datetime | None] = mapped_column(DateTime, nullable=True) reset_token: Mapped[str | None] = mapped_column(String(255), nullable=True) reset_token_expires: Mapped[datetime | None] = mapped_column(DateTime, nullable=True) avatar_url: Mapped[str | None] = mapped_column(String(500), nullable=True) is_admin: Mapped[bool] = mapped_column(Boolean, default=False) created_at: Mapped[datetime] = mapped_column( server_default=func.now(), nullable=False, ) updated_at: Mapped[datetime] = mapped_column( server_default=func.now(), onupdate=func.now(), nullable=False, ) queries: Mapped[list["Query"]] = relationship( "Query", back_populates="user", cascade="all, delete-orphan" ) subscriptions: Mapped[list["Subscription"]] = relationship( "Subscription", back_populates="user", cascade="all, delete-orphan" )