feat(core): remove duplicate deleted_at from Company (inherited from SoftDeleteMixin)
This commit is contained in:
@@ -41,7 +41,6 @@ class Company(Base, TenantMixin):
|
|||||||
address_zip: Mapped[str | None] = mapped_column(String(20), nullable=True)
|
address_zip: Mapped[str | None] = mapped_column(String(20), nullable=True)
|
||||||
address_country: Mapped[str | None] = mapped_column(String(2), nullable=True)
|
address_country: Mapped[str | None] = mapped_column(String(2), nullable=True)
|
||||||
address_state: Mapped[str | None] = mapped_column(String(100), nullable=True)
|
address_state: Mapped[str | None] = mapped_column(String(100), nullable=True)
|
||||||
deleted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
|
|
||||||
# FTS vector
|
# FTS vector
|
||||||
search_tsv: Mapped[Any] = mapped_column(
|
search_tsv: Mapped[Any] = mapped_column(
|
||||||
TSVECTOR,
|
TSVECTOR,
|
||||||
|
|||||||
Reference in New Issue
Block a user