From 24e517c5b3c67a5d88923a8e59b285886cdefa5b Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Mon, 12 Jun 2023 17:00:42 +0200 Subject: [PATCH] make oauth2 client secret column larger Signed-off-by: Julien Veyssier --- apps/oauth2/lib/Migration/Version011601Date20230522143227.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oauth2/lib/Migration/Version011601Date20230522143227.php b/apps/oauth2/lib/Migration/Version011601Date20230522143227.php index e258224bb399b..43e3a2e26e34e 100644 --- a/apps/oauth2/lib/Migration/Version011601Date20230522143227.php +++ b/apps/oauth2/lib/Migration/Version011601Date20230522143227.php @@ -49,7 +49,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt $table = $schema->getTable('oauth2_clients'); if ($table->hasColumn('secret')) { $column = $table->getColumn('secret'); - $column->setLength(256); + $column->setLength(512); return $schema; } }