spreed/lib/Migration/Version23000Date20251030090219.php
Joas Schilling bfd33aabaa
feat(pinned): Add response fields for last pinned and last dismissed ids
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-11-03 16:48:49 +01:00

49 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 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\DB\Types;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
use Override;
class Version23000Date20251030090219 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure(): ISchemaWrapper $schemaClosure
* @param array $options
* @return null|ISchemaWrapper
*/
#[Override]
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
$table = $schema->getTable('talk_rooms');
if (!$table->hasColumn('last_pinned_id')) {
$table->addColumn('last_pinned_id', Types::BIGINT, [
'notnull' => false,
'default' => 0,
]);
}
$table = $schema->getTable('talk_attendees');
if (!$table->hasColumn('hidden_pinned_id')) {
$table->addColumn('hidden_pinned_id', Types::BIGINT, [
'notnull' => false,
'default' => 0,
]);
}
return $schema;
}
}