From 148b5d90df97d4b3c7283e5d3f4685c37eb91878 Mon Sep 17 00:00:00 2001 From: "Specht, David" Date: Thu, 17 Mar 2022 19:20:11 +0100 Subject: [PATCH] fix: removed length limit for logout_u_r_l --- lib/Migration/Version000000Date20220316165602.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Migration/Version000000Date20220316165602.php b/lib/Migration/Version000000Date20220316165602.php index 7e8d642..61dd5c1 100644 --- a/lib/Migration/Version000000Date20220316165602.php +++ b/lib/Migration/Version000000Date20220316165602.php @@ -28,8 +28,7 @@ class Version000000Date20220316165602 extends SimpleMigrationStep { if (!$table->hasColumn('logout_u_r_l')) { $table->addColumn('logout_u_r_l', 'string', [ - 'notnull' => false, - 'length' => 200 + 'notnull' => false ]); } }