diff --git a/lib/Migration/Version015000005Date20241229124721.php b/lib/Migration/Version015000005Date20241229124721.php new file mode 100644 index 000000000..e4b65e57c --- /dev/null +++ b/lib/Migration/Version015000005Date20241229124721.php @@ -0,0 +1,47 @@ +hasTable('bookmarks')) { + $table = $schema->getTable('bookmarks'); + $table->modifyColumn('url', [ + 'length' => 4096, + ]); + $table->modifyColumn('title', [ + 'length' => 4096, + ]); + $table->modifyColumn('description', [ + 'length' => 4096, + ]); + } + + return $schema; + } + +}