f3-data-models 0.1.15__tar.gz → 0.2.0__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.
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/PKG-INFO +1 -1
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/f3_data_models/models.py +2 -2
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/f3_data_models/utils.py +1 -1
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/pyproject.toml +1 -1
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/README.md +0 -0
- {f3_data_models-0.1.15 → f3_data_models-0.2.0}/f3_data_models/__init__.py +0 -0
@@ -313,10 +313,10 @@ class Org(Base):
|
|
313
313
|
"Location", cascade="expunge"
|
314
314
|
)
|
315
315
|
event_types: Mapped[Optional[List["EventType"]]] = relationship(
|
316
|
-
"EventType", secondary="event_types_x_org", cascade="expunge"
|
316
|
+
"EventType", secondary="event_types_x_org", cascade="expunge", viewonly=True
|
317
317
|
)
|
318
318
|
event_tags: Mapped[Optional[List["EventTag"]]] = relationship(
|
319
|
-
"EventTag", secondary="event_tags_x_org", cascade="expunge"
|
319
|
+
"EventTag", secondary="event_tags_x_org", cascade="expunge", viewonly=True
|
320
320
|
)
|
321
321
|
achievements: Mapped[Optional[List["Achievement"]]] = relationship(
|
322
322
|
"Achievement", secondary="achievements_x_org", cascade="expunge"
|
File without changes
|
File without changes
|