"""users 테이블 ORM""" from datetime import datetime from sqlalchemy import BigInteger, Boolean, DateTime, String, Text from sqlalchemy.orm import Mapped, mapped_column from core.database import Base class User(Base): __tablename__ = "users" id: Mapped[int] = mapped_column(BigInteger, primary_key=True) username: Mapped[str] = mapped_column(String(50), unique=True, nullable=False) password_hash: Mapped[str] = mapped_column(Text, nullable=False) totp_secret: Mapped[str | None] = mapped_column(String(64)) is_active: Mapped[bool] = mapped_column(Boolean, default=True) created_at: Mapped[datetime] = mapped_column( DateTime(timezone=True), default=datetime.now ) last_login_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True))