2025-09-03 10:07:55 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
*/
|
2026-05-28 08:54:31 -04:00
|
|
|
|
2025-09-03 10:07:55 -04:00
|
|
|
namespace OCP\Migration\Attributes;
|
|
|
|
|
|
2025-09-03 16:56:27 -04:00
|
|
|
use OCP\AppFramework\Attribute\Consumable;
|
|
|
|
|
|
2025-09-03 10:07:55 -04:00
|
|
|
/**
|
|
|
|
|
* generic class related to migration attribute about data migration
|
|
|
|
|
*/
|
2025-09-03 16:56:27 -04:00
|
|
|
#[Consumable(since: '32.0.0')]
|
2025-09-03 10:07:55 -04:00
|
|
|
class DataMigrationAttribute extends MigrationAttribute {
|
|
|
|
|
}
|