added relative_path column to DiffTasks table

This commit is contained in:
Jonathan Treffler 2024-01-23 21:59:41 +01:00 committed by root
parent 0a25d57705
commit 93cf10d00d

View file

@ -35,6 +35,9 @@
$table->addColumn('groupfolder_id', 'bigint', [
'notnull' => true,
]);
$table->addColumn('relative_path', 'string', [
'notnull' => true,
]);
$table->addColumn('snapshot_id', 'string', [
'notnull' => true,
]);