From d8b0331d5e836f6f9fffeb2d8e367be8e9421477 Mon Sep 17 00:00:00 2001 From: TreJo Date: Wed, 19 Feb 2025 15:53:55 +0100 Subject: [PATCH] Add lib/Migration/Version131Date20250219152900.php --- .../Version131Date20250219152900.php | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/Migration/Version131Date20250219152900.php diff --git a/lib/Migration/Version131Date20250219152900.php b/lib/Migration/Version131Date20250219152900.php new file mode 100644 index 0000000..51ff5fb --- /dev/null +++ b/lib/Migration/Version131Date20250219152900.php @@ -0,0 +1,35 @@ +getTable(self::RESULTS_TABLE); + + $table->modifyColumn('before_path', [ + 'length' => 2000, + ]); + $table->modifyColumn('current_path', [ + 'length' => 2000, + ]); + + return $schema; + } +}