mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
refactor(structure): move to 7project dir
This commit is contained in:
7
7project/backend/app/models/user.py
Normal file
7
7project/backend/app/models/user.py
Normal file
@@ -0,0 +1,7 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user