mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(webhooks): Fix migration uri length
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
6c7931b846
commit
c940ba015c
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue