mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
This feature was not used in 8 years and from frontend did not even properly work anymore and was implemented using deprecated API. So get rid of it. The last version that was using a changelog from the changelog server was Nextcloud 20. We use the firstrunwizard nowadays for informing about Nextcloud changes in new releases. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
23 lines
588 B
PHP
23 lines
588 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Core\Migrations;
|
|
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
class Version34000Date20260122120000 extends SimpleMigrationStep {
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
|
|
/** @var ISchemaWrapper $schema */
|
|
$schema = $schemaClosure();
|
|
if ($schema->hasTable('whats_new')) {
|
|
$schema->dropTable('whats_new');
|
|
}
|
|
return $schema;
|
|
}
|
|
}
|