From aa59c0810fa9a0a5b01aa20712b08df14eb61062 Mon Sep 17 00:00:00 2001 From: J0WI Date: Tue, 26 Nov 2019 23:53:36 +0100 Subject: [PATCH] Extend propertypath to 4000 Signed-off-by: J0WI --- .../Version18000Date20191126000000.php | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 core/Migrations/Version18000Date20191126000000.php diff --git a/core/Migrations/Version18000Date20191126000000.php b/core/Migrations/Version18000Date20191126000000.php new file mode 100644 index 0000000000000..6ac8d867f502c --- /dev/null +++ b/core/Migrations/Version18000Date20191126000000.php @@ -0,0 +1,35 @@ +hasTable('properties')) { + $table = $schema->getTable('properties'); + + $table->changeColumn('propertypath', [ + 'notnull' => true, + 'length' => 4000, + 'default' => '', + ]); + } + + return $schema; + } +}