| 12345678910 |
- from sqlalchemy import Column, Integer, String
- from app.models.base_model import Base
- class UserModel(Base):
- __tablename__ = "user"
- id = Column(Integer, primary_key=True, index=True)
- username = Column(String(255), unique=True, index=True)
- hashed_password = Column(String(255))
|