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

40 lines
966 B
PHP

<?php
declare(strict_types=1);
/*
* SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\TwoFactorTOTP\Migration;
use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
class Version030000Date20190305114917 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
$table = $schema->getTable('twofactor_totp_secrets');
if (!$table->hasColumn('last_counter')) {
// TODO: use \OCP\DB\Types::BIGINT
$table->addColumn('last_counter', 'bigint', [
'notnull' => true,
'default' => -1,
]);
}
return $schema;
}
}