from sqlalchemy import Column, String from fastapi_users.db import SQLAlchemyBaseUserTableUUID from app.core.base import Base class User(SQLAlchemyBaseUserTableUUID, Base): first_name = Column(String(length=100), nullable=True) last_name = Column(String(length=100), nullable=True)