Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-01-13 19:20:45 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2022-01-14 11:46:46 +0300
commite20548731fc06b918faacb8cd7f401a149e907fa (patch)
tree26c07440d4ccd5d4dc6b2d146b27436c8beb7217
parent56644bb15e790e14b8956cc171200ee548430566 (diff)
Remove useless indexes with duplicated names on backup table
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r--apps/user_ldap/lib/Migration/Version1130Date20211102154716.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php b/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
index 05c41760d6d..8c92bf5c7bd 100644
--- a/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
+++ b/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
@@ -114,8 +114,6 @@ class Version1130Date20211102154716 extends SimpleMigrationStep {
'length' => 64,
]);
$table2->setPrimaryKey(['owncloud_name'], 'lgm_backup_primary');
- $table2->addUniqueIndex(['ldap_dn_hash'], 'ldap_group_dn_hashes');
- $table2->addUniqueIndex(['directory_uuid'], 'ldap_group_directory_uuid');
$changeSchema = true;
}
}