mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 06:57:47 +01:00
13 lines
486 B
Python
13 lines
486 B
Python
from sqlalchemy import Column, String
|
|
from sqlalchemy.orm import relationship
|
|
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)
|
|
|
|
# Relationship
|
|
transactions = relationship("Transaction", back_populates="user")
|
|
categories = relationship("Category", back_populates="user") |