From 4156ebaa60b810c06e58b0333173b9c12fd5fb15 Mon Sep 17 00:00:00 2001 From: Ted Kaemming <65315+tkaemming@users.noreply.github.com> Date: Thu, 23 Nov 2023 09:48:59 -0800 Subject: [PATCH] Mark the `PluginConfig.error` column as unused. --- posthog/models/plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/posthog/models/plugin.py b/posthog/models/plugin.py index ff81a8d09d0f4..34afc1918b1d8 100644 --- a/posthog/models/plugin.py +++ b/posthog/models/plugin.py @@ -228,6 +228,7 @@ class Meta: enabled: models.BooleanField = models.BooleanField(default=False) order: models.IntegerField = models.IntegerField() config: models.JSONField = models.JSONField(default=dict) + # DEPRECATED: use `plugin_log_entries` or `app_metrics` in ClickHouse instead # Error when running this plugin on an event (frontend: PluginErrorType) # - e.g: "undefined is not a function on index.js line 23" # - error = { message: "Exception in processEvent()", time: "iso-string", ...meta }