f3-data-models 0.5.0__py3-none-any.whl → 0.5.2__py3-none-any.whl
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/models.py
CHANGED
@@ -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="
|
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
|
-
|
779
|
-
|
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="
|
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"
|
@@ -0,0 +1,7 @@
|
|
1
|
+
f3_data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
f3_data_models/models.py,sha256=P83oWtc8zA_-URKMA9f8oRzDEHPcqpcEFntEKS_Y8ZM,51390
|
3
|
+
f3_data_models/testing.py,sha256=UE88nhMrlflrPqeBM8uHcqCAc_p43q_jsSrPep8f01c,654
|
4
|
+
f3_data_models/utils.py,sha256=xFhMU6imwWGdH2KdqcAsddILR7FuAftDwfn9tIcLiwM,13208
|
5
|
+
f3_data_models-0.5.2.dist-info/METADATA,sha256=nN01iBfSPHDjtZ7tMVOGhw1mxYKpTz3zNQTURD1MHiA,2766
|
6
|
+
f3_data_models-0.5.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
7
|
+
f3_data_models-0.5.2.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
f3_data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
f3_data_models/models.py,sha256=JgadsmptYLmhRCCTt2hwfCbhTOBA6YeNrL_rLmi6L24,51355
|
3
|
-
f3_data_models/testing.py,sha256=UE88nhMrlflrPqeBM8uHcqCAc_p43q_jsSrPep8f01c,654
|
4
|
-
f3_data_models/utils.py,sha256=xFhMU6imwWGdH2KdqcAsddILR7FuAftDwfn9tIcLiwM,13208
|
5
|
-
f3_data_models-0.5.0.dist-info/METADATA,sha256=iqPyPlOkmEDcVHexeGBoNBy6gHFD0ttnkY2MnSn39oU,2766
|
6
|
-
f3_data_models-0.5.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
7
|
-
f3_data_models-0.5.0.dist-info/RECORD,,
|
File without changes
|