60 lines
2.5 KiB
Python
60 lines
2.5 KiB
Python
import uuid
|
|
from datetime import datetime, timezone
|
|
|
|
from sqlalchemy import String, Boolean, Integer, DateTime, ForeignKey, 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, nullable=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, nullable=False)
|
|
organization_id: Mapped[uuid.UUID | None] = mapped_column(
|
|
Uuid(as_uuid=True),
|
|
ForeignKey("organizations.id", ondelete="SET NULL"),
|
|
nullable=True,
|
|
)
|
|
role: Mapped[str] = mapped_column(String(20), server_default="owner", nullable=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,
|
|
)
|
|
|
|
organization: Mapped["Organization | None"] = relationship(
|
|
"Organization", back_populates="users"
|
|
)
|
|
org_memberships: Mapped[list["OrgMember"]] = relationship(
|
|
"OrgMember", back_populates="user", cascade="all, delete-orphan"
|
|
)
|
|
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"
|
|
)
|