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
sergeng 2023-03-13 17:44:23 +09:00 committed by GitHub
parent 479790e156
commit 9ddbf044ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;