diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-06-10 17:07:07 +0200 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-06-11 14:10:29 +0200 |
commit | c940ba015cb842407f9d503e2e4e74675896af03 (patch) | |
tree | 0d059c5f267e3b093163a519dcc494b551585b37 | |
parent | 6c7931b8466a377eef5e8be36d50e7cd20cda045 (diff) | |
download | nextcloud-server-c940ba015cb842407f9d503e2e4e74675896af03.tar.gz nextcloud-server-c940ba015cb842407f9d503e2e4e74675896af03.zip |
fix(webhooks): Fix migration uri length
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rwxr-xr-x | apps/webhooks/lib/Migration/Version1000Date20240527153425.php | 2 |
1 files changed, 1 insertions, 1 deletions
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, |