FastAPI + Jinja2 + MariaDB web application with registration, login, profile, password reset, and email confirmation flows. All UI in Russian. Styled with Evotor brand colors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
978 B
Python
22 lines
978 B
Python
from sqlalchemy import Column, Integer, String, Boolean, DateTime
|
|
from sqlalchemy.sql import func
|
|
|
|
from web.database import Base
|
|
|
|
|
|
class User(Base):
|
|
__tablename__ = "users"
|
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
first_name = Column(String(100), nullable=False)
|
|
last_name = Column(String(100), nullable=False)
|
|
email = Column(String(255), unique=True, nullable=False, index=True)
|
|
phone = Column(String(20), unique=True, nullable=False, index=True)
|
|
password_hash = Column(String(255), nullable=False)
|
|
is_email_confirmed = Column(Boolean, default=False, nullable=False)
|
|
email_confirm_token = Column(String(255), nullable=True)
|
|
password_reset_token = Column(String(255), nullable=True)
|
|
password_reset_expires = Column(DateTime, nullable=True)
|
|
created_at = Column(DateTime, server_default=func.now(), nullable=False)
|
|
updated_at = Column(DateTime, server_default=func.now(), onupdate=func.now(), nullable=False)
|