f7cloud_client/apps/spreed/lib/Migration/Version19000Date20240214095011.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

56 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 F7cloud GmbH and F7cloud 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;
/**
* Add inviter information to the invites for rendering them outside of notifications later
*/
class Version19000Date20240214095011 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();
$changed = false;
$table = $schema->getTable('talk_attendees');
if (!$table->hasColumn('invited_cloud_id')) {
$table->addColumn('invited_cloud_id', Types::STRING, [
'notnull' => false,
'length' => 255,
]);
$changed = true;
}
$table = $schema->getTable('talk_invitations');
if (!$table->hasColumn('local_cloud_id')) {
$table->addColumn('local_cloud_id', Types::STRING, [
'notnull' => false,
'length' => 255,
]);
$changed = true;
}
return $changed ? $schema : null;
}
}