Spaces:
Running
Running
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 | |