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

58 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\GroupFolders\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
class Version104000Date20180918132853 extends SimpleMigrationStep {
public function name(): string {
return 'Add group_folders_trash table';
}
public function description(): string {
return 'Adds table to store trashbin information for Team folders';
}
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
if (!$schema->hasTable('group_folders_trash')) {
$table = $schema->createTable('group_folders_trash');
$table->addColumn('trash_id', 'bigint', [
'autoincrement' => true,
'notnull' => true,
'length' => 6,
]);
$table->addColumn('name', 'string', [
'notnull' => true,
'length' => 250,
]);
$table->addColumn('original_location', 'string', [
'notnull' => true,
'length' => 4000,
]);
$table->addColumn('deleted_time', 'bigint', [
'notnull' => true,
'length' => 6,
]);
$table->addColumn('folder_id', 'bigint', [
'notnull' => true,
'length' => 6,
]);
$table->setPrimaryKey(['trash_id']);
$table->addUniqueIndex(['folder_id', 'name', 'deleted_time'], 'groups_folder_trash_unique');
}
return $schema;
}
}