19 lines
911 B
Python
19 lines
911 B
Python
|
|
"""YakPanel - User model"""
|
||
|
|
from datetime import datetime
|
||
|
|
from sqlalchemy import String, Integer, DateTime, Boolean
|
||
|
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
||
|
|
from app.core.database import Base
|
||
|
|
|
||
|
|
|
||
|
|
class User(Base):
|
||
|
|
__tablename__ = "users"
|
||
|
|
|
||
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
||
|
|
username: Mapped[str] = mapped_column(String(64), unique=True, nullable=False, index=True)
|
||
|
|
password: Mapped[str] = mapped_column(String(255), nullable=False)
|
||
|
|
email: Mapped[str] = mapped_column(String(128), nullable=True)
|
||
|
|
is_active: Mapped[bool] = mapped_column(Boolean, default=True)
|
||
|
|
is_superuser: Mapped[bool] = mapped_column(Boolean, default=False)
|
||
|
|
created_at: Mapped[datetime] = mapped_column(DateTime, default=datetime.utcnow)
|
||
|
|
updated_at: Mapped[datetime] = mapped_column(DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
|