Big refactor of gift categories model
All checks were successful
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Successful in 52s
Build and Push Docker Images / build-frontend (push) Has been skipped

This commit is contained in:
2025-03-16 14:51:04 +01:00
parent ed017a42ed
commit 4ef202cc5a
7 changed files with 643 additions and 97 deletions

View File

@@ -49,7 +49,7 @@ class Event(Base, UUIDMixin, TimestampMixin):
managers = relationship("EventManager", back_populates="event")
guests = relationship("Guest", back_populates="event")
gifts = relationship("GiftItem", back_populates="event")
gift_categories = relationship("GiftCategory", back_populates="event")
category_associations = relationship("EventGiftCategory", back_populates="event")
media = relationship("EventMedia", back_populates="event")
# updates = relationship("EventUpdate", back_populates="event") # Keep commented out
rsvps = relationship("RSVP", back_populates="event")