From 5d4ee64b1eb788e09effd0af2742daaffea76c9d Mon Sep 17 00:00:00 2001 From: Eric Duong Date: Thu, 25 Apr 2024 17:34:43 -0400 Subject: [PATCH] chore(data-warehouse): add description hint (#21865) add description hint --- posthog/temporal/data_imports/pipelines/stripe/helpers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/posthog/temporal/data_imports/pipelines/stripe/helpers.py b/posthog/temporal/data_imports/pipelines/stripe/helpers.py index 56494d3d47ce2..75bb0c7ed7044 100644 --- a/posthog/temporal/data_imports/pipelines/stripe/helpers.py +++ b/posthog/temporal/data_imports/pipelines/stripe/helpers.py @@ -162,6 +162,9 @@ def stripe_source( stripe_pagination, name=endpoint, write_disposition="append", + columns={ + "description": {"data_type": "text", "nullable": True}, + }, )( api_key=api_key, account_id=account_id,