mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
49 lines
1.1 KiB
PHP
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;
|
|
}
|
|
}
|