f3-data-models 0.2.0__tar.gz → 0.2.1__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: f3-data-models
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: The data schema and models for F3 Nation applications.
5
- Home-page: https://github.com/F3-Nation/f3-data-models
6
5
  License: MIT
7
6
  Author: Evan Petzoldt
8
7
  Author-email: evan.petzoldt@protonmail.com
@@ -727,7 +727,7 @@ class SlackUser(Base):
727
727
  is_bot: Mapped[bool]
728
728
  user_id: Mapped[Optional[int]] = mapped_column(ForeignKey("users.id"))
729
729
  avatar_url: Mapped[Optional[str]]
730
- slack_team_id: Mapped[str] = mapped_column(ForeignKey("slack_spaces.team_id"))
730
+ slack_team_id: Mapped[str]
731
731
  strava_access_token: Mapped[Optional[str]]
732
732
  strava_refresh_token: Mapped[Optional[str]]
733
733
  strava_expires_at: Mapped[Optional[datetime]]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.2.0"
3
+ version = "0.2.1"
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