mc-postgres-db 1.0.7__tar.gz → 1.0.8__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.4
2
2
  Name: mc-postgres-db
3
- Version: 1.0.7
3
+ Version: 1.0.8
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mc-postgres-db"
3
- version = "1.0.7"
3
+ version = "1.0.8"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mc-postgres-db
3
- Version: 1.0.7
3
+ Version: 1.0.8
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -229,7 +229,7 @@ class ProviderContent(Base):
229
229
  content_type_id: Mapped[int] = mapped_column(
230
230
  ForeignKey("content_type.id"), nullable=False
231
231
  )
232
- author: Mapped[Optional[str]] = mapped_column(String(100), nullable=True)
232
+ authors: Mapped[Optional[str]] = mapped_column(String(100), nullable=True)
233
233
  title: Mapped[Optional[str]] = mapped_column(String(200), nullable=True)
234
234
  content: Mapped[str] = mapped_column(String(), nullable=False)
235
235
  created_at: Mapped[datetime.datetime] = mapped_column(
File without changes
File without changes