diff --git a/appinfo/info.xml b/appinfo/info.xml index dd19fb1..7b0d2c6 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ Groupfolder Filesystem Snapshots Allows restoring a groupfolder to a previous snapshot in the filesystem App proving a PHP API for other apps, that allows (partially) restoring a groupfolder to a previous snapshot in the filesystem. Requires a filesystem with snapshot support (tested with and made for ZFS). It is made for other apps to integrate with, IT DOES NOT WORK STANDALONE - 1.3.0 + 1.3.1 agpl verdigado eG Jonathan Treffler diff --git a/lib/Migration/Version131Date20250219152900.php b/lib/Migration/Version131Date20250219152900.php new file mode 100644 index 0000000..51ff5fb --- /dev/null +++ b/lib/Migration/Version131Date20250219152900.php @@ -0,0 +1,35 @@ +getTable(self::RESULTS_TABLE); + + $table->modifyColumn('before_path', [ + 'length' => 2000, + ]); + $table->modifyColumn('current_path', [ + 'length' => 2000, + ]); + + return $schema; + } +}