53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 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;
|
|
|
|
class Version14000Date20211203132513 extends SimpleMigrationStep {
|
|
/**
|
|
* @param IOutput $output
|
|
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
|
* @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('remote_server')) {
|
|
$table->addColumn('remote_server', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 512,
|
|
'default' => null,
|
|
]);
|
|
$table->addColumn('remote_token', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 32,
|
|
'default' => null,
|
|
]);
|
|
|
|
// Can not be unique as we have null, null for all local rooms.
|
|
$table->addIndex(['remote_server', 'remote_token'], 'remote_id');
|
|
}
|
|
|
|
if ($table->hasColumn('server_url')) {
|
|
$table->dropColumn('server_url');
|
|
}
|
|
|
|
return $schema;
|
|
}
|
|
}
|