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 <sergeng@yahoo.fr>master
parent
479790e156
commit
9ddbf044ba
|
@ -62,7 +62,7 @@ class Version010703Date20201101235744 extends SimpleMigrationStep {
|
||||||
]);
|
]);
|
||||||
$table->addColumn('value', 'string', [
|
$table->addColumn('value', 'string', [
|
||||||
'notnull' => false,
|
'notnull' => false,
|
||||||
'length' => 10240,
|
'length' => 4000,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
return $schema;
|
return $schema;
|
||||||
|
|
Loading…
Reference in New Issue