mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-17 17:28:02 +00:00
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace OCA\Forum\Migration;
|
|
|
|
use Closure;
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
/**
|
|
* Version 21 Migration (runs after data migration in Version 20):
|
|
* - Make target_id not null
|
|
* - Drop role_id column
|
|
* - Create new indexes for (category_id, target_type, target_id)
|
|
*/
|
|
class Version21Date20260301000001 extends SimpleMigrationStep {
|
|
/**
|
|
* @param IOutput $output
|
|
* @param Closure(): ISchemaWrapper $schemaClosure
|
|
* @param array $options
|
|
* @return ISchemaWrapper|null
|
|
*/
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
|
/** @var ISchemaWrapper $schema */
|
|
$schema = $schemaClosure();
|
|
|
|
if (!$schema->hasTable('forum_category_perms')) {
|
|
return null;
|
|
}
|
|
|
|
$table = $schema->getTable('forum_category_perms');
|
|
|
|
// Make target_id not null
|
|
if ($table->hasColumn('target_id')) {
|
|
$output->info('Forum: Making target_id column not null...');
|
|
$column = $table->getColumn('target_id');
|
|
$column->setNotnull(true);
|
|
$column->setDefault('');
|
|
}
|
|
|
|
// Drop role_id column
|
|
if ($table->hasColumn('role_id')) {
|
|
$output->info('Forum: Dropping role_id column from forum_category_perms...');
|
|
$table->dropColumn('role_id');
|
|
}
|
|
|
|
// Add unique index on (category_id, target_type, target_id)
|
|
if (!$table->hasIndex('forum_cat_perms_uniq_idx')) {
|
|
$output->info('Forum: Adding unique index forum_cat_perms_uniq_idx...');
|
|
$table->addUniqueIndex(['category_id', 'target_type', 'target_id'], 'forum_cat_perms_uniq_idx');
|
|
}
|
|
|
|
// Add index on (target_type, target_id)
|
|
if (!$table->hasIndex('forum_cat_perms_target_idx')) {
|
|
$output->info('Forum: Adding index forum_cat_perms_target_idx...');
|
|
$table->addIndex(['target_type', 'target_id'], 'forum_cat_perms_target_idx');
|
|
}
|
|
|
|
return $schema;
|
|
}
|
|
}
|