f3-data-models 0.5.5__tar.gz → 0.5.6__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.5
3
+ Version: 0.5.6
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -909,6 +909,8 @@ class User(Base):
909
909
  created: Mapped[dt_create]
910
910
  updated: Mapped[dt_update]
911
911
 
912
+ home_region_org: Mapped[Optional[Org]] = relationship(innerjoin=True, cascade="expunge", viewonly=True)
913
+
912
914
 
913
915
  class SlackUser(Base):
914
916
  """
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.5.5"
3
+ version = "0.5.6"
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