Spaces:
No application file
No application file
File size: 258 Bytes
00027a8 |
1 2 3 4 5 6 7 8 |
from sqlalchemy import String, Column
from fastapi_users.db import SQLAlchemyBaseUserTableUUID
from database.models import Base
class User(SQLAlchemyBaseUserTableUUID, Base):
__tablename__ = "users"
name = Column(String, nullable=False) |