From 5365882b6fb40892706846ca715149b2a81583ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Tue, 2 Jul 2024 14:29:25 +0200 Subject: [PATCH] fix(webhook_listeners): Use string type instead of text for event MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- .../lib/Migration/Version1000Date20240527153425.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/webhook_listeners/lib/Migration/Version1000Date20240527153425.php b/apps/webhook_listeners/lib/Migration/Version1000Date20240527153425.php index eee778db3bb..ca8e708040c 100755 --- a/apps/webhook_listeners/lib/Migration/Version1000Date20240527153425.php +++ b/apps/webhook_listeners/lib/Migration/Version1000Date20240527153425.php @@ -47,8 +47,9 @@ class Version1000Date20240527153425 extends SimpleMigrationStep { 'notnull' => true, 'length' => 4000, ]); - $table->addColumn('event', Types::TEXT, [ + $table->addColumn('event', Types::STRING, [ 'notnull' => true, + 'length' => 4000, ]); $table->addColumn('event_filter', Types::TEXT, [ 'notnull' => false, -- 2.39.5