Skip to content

Commit

Permalink
fix: Removed redundant database indices
Browse files Browse the repository at this point in the history
Signed-off-by: skalidindi53 <s.teja2004@gmail.com>
  • Loading branch information
skalidindi53 committed Jul 19, 2024
1 parent 25b153b commit de9cf52
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa.
]]></description>

<version>20.0.0-dev.5</version>
<version>20.0.0-dev.6</version>
<licence>agpl</licence>

<author>Daniel Calviño Sánchez</author>
Expand Down
42 changes: 42 additions & 0 deletions lib/Migration/Version20000Date20240717180417.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

declare(strict_types=1);

/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

namespace OCA\Talk\Migration;

use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

class Version20000Date20240717180417 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure(): ISchemaWrapper $schemaClosure
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();

// Remove redundant index ta_room from talk_attendees
$table = $schema->getTable('talk_attendees');
if ($table->hasIndex('ta_room')) {
$table->dropIndex('ta_room');
}

// Remove redundant index talk_bots_convo_id from talk_bots_conversation
$table = $schema->getTable('talk_bots_conversation');
if ($table->hasIndex('talk_bots_convo_id')) {
$table->dropIndex('talk_bots_convo_id');
}

return $schema;
}
}

0 comments on commit de9cf52

Please sign in to comment.