diff --git a/app/models/currency.py b/app/models/currency.py index f832daa..f742be3 100644 --- a/app/models/currency.py +++ b/app/models/currency.py @@ -28,4 +28,3 @@ class Currency(Base, TenantMixin): name: Mapped[str] = mapped_column(String(50), nullable=False) symbol: Mapped[str] = mapped_column(String(5), nullable=False) is_default: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False) - deleted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)