mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
8 lines
291 B
Python
8 lines
291 B
Python
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)
|