f3-data-models 0.6.3__tar.gz → 0.7.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: f3-data-models
3
- Version: 0.6.3
3
+ Version: 0.7.0
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -604,6 +604,7 @@ class EventTag(Base):
604
604
  description: Mapped[Optional[text]]
605
605
  color: Mapped[Optional[str]]
606
606
  specific_org_id: Mapped[Optional[int]] = mapped_column(ForeignKey("orgs.id"))
607
+ is_active: Mapped[bool] = mapped_column(Boolean, default=True, nullable=False)
607
608
  created: Mapped[dt_create]
608
609
  updated: Mapped[dt_update]
609
610
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.6.3"
3
+ version = "0.7.0"
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