From d5475e9d05b126fb868de693a31e715da45f70c9 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Tue, 29 Oct 2024 17:43:05 +0100 Subject: [PATCH] chore(systemtags): add missing migration attributes Signed-off-by: skjnldsv --- core/Migrations/Version31000Date20241018063111.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/Migrations/Version31000Date20241018063111.php b/core/Migrations/Version31000Date20241018063111.php index eefda981dcbf3..ce4c42df15918 100644 --- a/core/Migrations/Version31000Date20241018063111.php +++ b/core/Migrations/Version31000Date20241018063111.php @@ -12,12 +12,18 @@ use Closure; use Doctrine\DBAL\Types\Types; use OCP\DB\ISchemaWrapper; +use OCP\Migration\Attributes\AddColumn; +use OCP\Migration\Attributes\AddIndex; +use OCP\Migration\Attributes\ColumnType; +use OCP\Migration\Attributes\IndexType; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * Add objecttype index to systemtag_object_mapping */ +#[AddColumn(table: 'systemtag', name: 'etag', type: ColumnType::STRING, description: 'Adding etag for systemtag table to prevent conflicts')] +#[AddIndex(table: 'systemtag_object_mapping', type: IndexType::INDEX, description: 'Adding objecttype index to systemtag_object_mapping')] class Version31000Date20241018063111 extends SimpleMigrationStep { /**