fix(webhooks): Fix migration uri length

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-06-10 17:07:07 +02:00 committed by Côme Chilliet
parent 6c7931b846
commit c940ba015c

View file

@ -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,