from sqlalchemy.orm import Mapped, mapped_column from database import Base class Profile(Base): __tablename__ = 'profile' id: Mapped[int] = mapped_column(nullable=False, primary_key=True)