feat(core): remove duplicate deleted_at from Attachment (inherited from SoftDeleteMixin)

This commit is contained in:
2026-07-04 00:31:47 +00:00
parent 30a7f603b7
commit 3bf2adff86
-1
View File
@@ -32,4 +32,3 @@ class Attachment(Base, TenantMixin):
uploaded_by: Mapped[uuid.UUID | None] = mapped_column(
PGUUID(as_uuid=True), ForeignKey("users.id", ondelete="SET NULL"), nullable=True
)
deleted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)