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

This commit is contained in:
2026-07-04 00:31:46 +00:00
parent c87c125395
commit 30a7f603b7
-1
View File
@@ -45,4 +45,3 @@ class SystemSettings(Base, TenantMixin):
invoice_prefix: Mapped[str] = mapped_column(String(20), nullable=False, default="RE-")
quote_prefix: Mapped[str] = mapped_column(String(20), nullable=False, default="AN-")
payment_terms_days: Mapped[int] = mapped_column(Integer, nullable=False, default=14)
deleted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)