feat(core): remove duplicate deleted_at from Currency (inherited from SoftDeleteMixin)
This commit is contained in:
@@ -28,4 +28,3 @@ class Currency(Base, TenantMixin):
|
|||||||
name: Mapped[str] = mapped_column(String(50), nullable=False)
|
name: Mapped[str] = mapped_column(String(50), nullable=False)
|
||||||
symbol: Mapped[str] = mapped_column(String(5), nullable=False)
|
symbol: Mapped[str] = mapped_column(String(5), nullable=False)
|
||||||
is_default: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False)
|
is_default: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False)
|
||||||
deleted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
|
|
||||||
|
|||||||
Reference in New Issue
Block a user