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

55 lines
1.4 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\Richdocuments\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
/**
* Auto-generated migration step: Please modify to your needs!
*/
class Version50200Date20211220212457 extends SimpleMigrationStep {
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
if (!$schema->hasTable('richdocuments_template')) {
$table = $schema->createTable('richdocuments_template');
$table->addColumn('id', 'bigint', [
'autoincrement' => true,
'notnull' => true,
'length' => 20,
'unsigned' => true,
]);
$table->addColumn('userid', 'string', [
'notnull' => false,
'length' => 64,
]);
$table->addColumn('fileid', 'bigint', [
'notnull' => true,
'length' => 20,
]);
$table->addColumn('templateid', 'bigint', [
'notnull' => true,
'length' => 20,
]);
$table->addColumn('timestamp', 'bigint', [
'notnull' => true,
'length' => 20,
'unsigned' => true,
]);
$table->setPrimaryKey(['id']);
$table->addUniqueIndex(['userid', 'fileid'], 'rd_t_user_file');
}
return $schema;
}
}