f3-data-models 0.5.0__tar.gz → 0.5.1__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.1
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"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.5.0"
3
+ version = "0.5.1"
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