fix(campaign): remove stale mapper coupling

This commit is contained in:
2026-07-20 20:07:39 +02:00
parent 8965b27517
commit f755cdf48d
2 changed files with 1 additions and 3 deletions

View File

@@ -161,8 +161,6 @@ class RecipientImportMappingProfile(Base, TimestampMixin):
value_separators: Mapped[str] = mapped_column(String(50), default=",;|", nullable=False)
mappings: Mapped[list[dict[str, Any]]] = mapped_column(JSON, default=list, nullable=False)
owner: Mapped["User"] = relationship("User")
class CampaignVersion(Base, TimestampMixin):
__tablename__ = "campaign_versions"