f3-data-models 0.5.1__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.1
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
@@ -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.1"
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