f3-data-models 0.5.0__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: f3-data-models
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -588,7 +588,7 @@ class EventTag_x_EventInstance(Base):
588
588
  event_instance_id: Mapped[int] = mapped_column(ForeignKey("event_instances.id"), primary_key=True)
589
589
  event_tag_id: Mapped[int] = mapped_column(ForeignKey("event_tags.id"), primary_key=True)
590
590
 
591
- event_instance: Mapped["EventInstance"] = relationship(back_populates="event_tags_x_event_instances")
591
+ event_instance: Mapped["EventInstance"] = relationship(back_populates="event_instances_x_event_tags")
592
592
 
593
593
 
594
594
  class Org_x_SlackSpace(Base):
@@ -775,8 +775,8 @@ class EventInstance(Base):
775
775
  location (Location): The associated location.
776
776
  event_types (List[EventType]): The associated event types.
777
777
  event_tags (Optional[List[EventTag]]): The associated event tags.
778
- event_x_event_types (List[EventType_x_Event]): The association between the event and event types.
779
- event_x_event_tags (Optional[List[EventTag_x_Event]]): The association between the event and event tags.
778
+ event_instances_x_event_types (List[EventType_x_EventInstance]): The association between the event and event types.
779
+ event_instances_x_event_tags (Optional[List[EventTag_x_EventInstance]]): The association between the event and event tags.
780
780
  """ # noqa: E501
781
781
 
782
782
  __tablename__ = "event_instances"
@@ -824,7 +824,7 @@ class EventInstance(Base):
824
824
  secondary="event_tags_x_event_instances", cascade="expunge", viewonly=True
825
825
  )
826
826
  event_instances_x_event_types: Mapped[List[EventType_x_EventInstance]] = relationship(
827
- back_populates="event_instances", cascade="save-update, merge, delete"
827
+ back_populates="event_instance", cascade="save-update, merge, delete"
828
828
  )
829
829
  event_instances_x_event_tags: Mapped[Optional[List[EventTag_x_EventInstance]]] = relationship(
830
830
  back_populates="event_instance", cascade="save-update, merge, delete"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.5.0"
3
+ version = "0.5.2"
4
4
  description = "The data schema and models for F3 Nation applications."
5
5
  authors = ["Evan Petzoldt <evan.petzoldt@protonmail.com>"]
6
6
  readme = "README.md"
File without changes