From ba76120078d80dc3e75bcf4cf334664204a28262 Mon Sep 17 00:00:00 2001 From: grnd-alt Date: Wed, 12 Aug 2026 12:07:35 +0200 Subject: [PATCH] fix: replace changeColumn with modifyColumn Signed-off-by: grnd-alt --- lib/Migration/Version10200Date20201111150114.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Migration/Version10200Date20201111150114.php b/lib/Migration/Version10200Date20201111150114.php index c116ecb85b..3ebb19e928 100644 --- a/lib/Migration/Version10200Date20201111150114.php +++ b/lib/Migration/Version10200Date20201111150114.php @@ -98,7 +98,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt $table = $schema->getTable('deck_cards'); if ($table->getColumn('title')->getLength() !== 255) { - $table->changeColumn('title', [ + $table->modifyColumn('title', [ 'length' => 255 ]); }