f3-data-models 0.5.2__py3-none-any.whl → 0.5.3__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
@@ -572,6 +572,7 @@ class EventTag_x_Event(Base):
|
|
572
572
|
|
573
573
|
event: Mapped["Event"] = relationship(back_populates="event_x_event_tags")
|
574
574
|
|
575
|
+
|
575
576
|
class EventTag_x_EventInstance(Base):
|
576
577
|
"""
|
577
578
|
Model representing the association between event tags and event instances. The intention is that a single event instance can be associated with multiple event tags.
|
@@ -1252,6 +1253,7 @@ class UpdateRequest(Base):
|
|
1252
1253
|
location_lng (Optional[float]): The longitude of the location.
|
1253
1254
|
location_id (Optional[int]): The ID of the location.
|
1254
1255
|
location_contact_email (Optional[str]): The contact email of the location.
|
1256
|
+
ao_id (Optional[int]): The ID of the associated AO.
|
1255
1257
|
ao_name (Optional[text]): The name of the AO.
|
1256
1258
|
ao_logo (Optional[text]): The URL of the AO logo.
|
1257
1259
|
submitted_by (str): The user who submitted the request.
|
@@ -1303,6 +1305,7 @@ class UpdateRequest(Base):
|
|
1303
1305
|
location_id: Mapped[Optional[int]] = mapped_column(ForeignKey("locations.id"))
|
1304
1306
|
location_contact_email: Mapped[Optional[str]]
|
1305
1307
|
|
1308
|
+
ao_id: Mapped[Optional[int]] = mapped_column(ForeignKey("orgs.id"))
|
1306
1309
|
ao_name: Mapped[Optional[text]]
|
1307
1310
|
ao_logo: Mapped[Optional[text]]
|
1308
1311
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
f3_data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
f3_data_models/models.py,sha256=omQrhckvosTCiYA4uxsx0Wu7hAm69c4MzIVyGq7iWSQ,51523
|
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.3.dist-info/METADATA,sha256=0SrlZ9WS42o15zpRFfN7Km5t6VOxVPkq9u3wfP6o7fc,2766
|
6
|
+
f3_data_models-0.5.3.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
7
|
+
f3_data_models-0.5.3.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=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,,
|
File without changes
|