llm_host / models.py
Bahodir Nematjonov
file update
e4f5d4a
raw
history blame contribute delete
326 Bytes
from sqlalchemy import Column, Integer, String
from database import Base
class User(Base):
"""SQLAlchemy model for storing users."""
__tablename__ = "users"
id = Column(Integer, primary_key=True, index=True)
username = Column(String, unique=True, index=True)
password = Column(String) # Hashed password