mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
make oauth2 client secret column larger
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
parent
8086d7e41b
commit
24e517c5b3
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class Version011601Date20230522143227 extends SimpleMigrationStep {
|
|||
$table = $schema->getTable('oauth2_clients');
|
||||
if ($table->hasColumn('secret')) {
|
||||
$column = $table->getColumn('secret');
|
||||
$column->setLength(256);
|
||||
$column->setLength(512);
|
||||
return $schema;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue