f3-data-models 0.6.0__tar.gz → 0.6.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.6.0
3
+ Version: 0.6.2
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -780,7 +780,7 @@ class Event(Base):
780
780
  )
781
781
 
782
782
  org: Mapped[Org] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
783
- location: Mapped[Location] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
783
+ location: Mapped[Location] = relationship(innerjoin=False, cascade="expunge", viewonly=True)
784
784
  event_types: Mapped[List[EventType]] = relationship(
785
785
  secondary="events_x_event_types",
786
786
  innerjoin=True,
@@ -879,7 +879,7 @@ class EventInstance(Base):
879
879
  )
880
880
 
881
881
  org: Mapped[Org] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
882
- location: Mapped[Location] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
882
+ location: Mapped[Location] = relationship(innerjoin=False, cascade="expunge", viewonly=True)
883
883
  event_types: Mapped[List[EventType]] = relationship(
884
884
  secondary="event_instances_x_event_types",
885
885
  innerjoin=True,
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.6.0"
3
+ version = "0.6.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