From c940ba015cb842407f9d503e2e4e74675896af03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Mon, 10 Jun 2024 17:07:07 +0200 Subject: [PATCH] fix(webhooks): Fix migration uri length MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/webhooks/lib/Migration/Version1000Date20240527153425.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webhooks/lib/Migration/Version1000Date20240527153425.php b/apps/webhooks/lib/Migration/Version1000Date20240527153425.php index 7c6f66314e4..a54702de6c0 100755 --- a/apps/webhooks/lib/Migration/Version1000Date20240527153425.php +++ b/apps/webhooks/lib/Migration/Version1000Date20240527153425.php @@ -45,7 +45,7 @@ class Version1000Date20240527153425 extends SimpleMigrationStep { ]); $table->addColumn('uri', Types::STRING, [ 'notnull' => true, - 'length' => 4096, + 'length' => 4000, ]); $table->addColumn('event', Types::TEXT, [ 'notnull' => true, -- 2.39.5