From 9ddbf044ba0534c5bbc72114115664c237de8321 Mon Sep 17 00:00:00 2001 From: sergeng Date: Mon, 13 Mar 2023 17:44:23 +0900 Subject: [PATCH] Update Version010703Date20201101235744.php (#108) Fix for Install Error Column "oc_weather_config"."value" is type String, but exceeding the 4.000 length limit Signed-off-by: sergeng --- lib/Migration/Version010703Date20201101235744.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Migration/Version010703Date20201101235744.php b/lib/Migration/Version010703Date20201101235744.php index d225ed4..01d228f 100644 --- a/lib/Migration/Version010703Date20201101235744.php +++ b/lib/Migration/Version010703Date20201101235744.php @@ -62,7 +62,7 @@ class Version010703Date20201101235744 extends SimpleMigrationStep { ]); $table->addColumn('value', 'string', [ 'notnull' => false, - 'length' => 10240, + 'length' => 4000, ]); } return $schema;