From e7747084828c2f7fbc4e4dc0f03191955fc71ee9 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 22 Jun 2023 10:12:15 +0200 Subject: [PATCH] fix(systemtags): Keep non-existing index Signed-off-by: Marcel Klehr --- core/Migrations/Version13000Date20170718121200.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index bcf14656fec..05cdbcfd6b5 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -753,6 +753,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { 'unsigned' => true, ]); $table->setPrimaryKey(['objecttype', 'objectid', 'systemtagid'], 'som_pk'); +// $table->addUniqueIndex(['objecttype', 'objectid', 'systemtagid'], 'mapping'); $table->addIndex(['systemtagid', 'objecttype'], 'systag_by_tagid'); } -- 2.39.5