mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
5c49a54801
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Core\Migrations;
|
|
|
|
use Closure;
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\DB\Types;
|
|
use OCP\IDBConnection;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
class Version24000Date20211230140012 extends SimpleMigrationStep {
|
|
public function __construct(
|
|
protected IDBConnection $connection,
|
|
) {
|
|
}
|
|
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
|
/** @var ISchemaWrapper $schema */
|
|
$schema = $schemaClosure();
|
|
|
|
$table = $schema->getTable('jobs');
|
|
if (!$table->hasColumn('argument_hash')) {
|
|
$table->addColumn('argument_hash', Types::STRING, [
|
|
'notnull' => false,
|
|
'length' => 32,
|
|
]);
|
|
$table->addIndex(['class', 'argument_hash'], 'job_argument_hash');
|
|
return $schema;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
|
|
$update = $this->connection->getQueryBuilder();
|
|
|
|
$update->update('jobs')
|
|
->set('argument_hash', $update->func()->md5('argument'));
|
|
|
|
$update->executeStatement();
|
|
}
|
|
}
|